~ubuntu-branches/debian/sid/geiser/sid

« back to all changes in this revision

Viewing changes to scheme/racket/geiser/startup.rkt

  • Committer: Package Import Robot
  • Author(s): David Bremner
  • Date: 2015-09-01 19:47:08 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20150901194708-rg47qavlmkfdpm16
Tags: 0.7-1
* migrate to dh_elpa
* New upstream version: "Please package version 0.7", thanks to
  Christoph Egger (Closes: #789270).
* Bug fix: "help mode access to source code", thanks to Kevin Ryde
  (Closes: #710555).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; startup.rkt -- entry point
2
2
 
3
 
;; Copyright (C) 2009, 2010, 2013 Jose Antonio Ortega Ruiz
 
3
;; Copyright (C) 2009, 2010, 2013, 2014 Jose Antonio Ortega Ruiz
4
4
 
5
5
;; This program is free software; you can redistribute it and/or
6
6
;; modify it under the terms of the Modified BSD License. You should
9
9
 
10
10
;; Start date: Sat Apr 25, 2009 22:36
11
11
 
12
 
(require version/utils)
13
 
(unless (version<=? "5.0" (version))
14
 
  (error 'geiser
15
 
         "Racket version 5.0 or better required (found ~a)"
16
 
         (version)))
17
 
 
18
12
;; (require errortrace)
19
13
(require geiser/user)
20
14