diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-04-15 04:08:08 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2013-04-15 04:08:08 +0200 |
commit | c00f24907cf87589f4b28885507443d419385502 (patch) | |
tree | ad53486c2f6654ec8263cf367138baba2be7261a /scheme/racket/geiser/startup.rkt | |
parent | 82165389e02b4ff29bade2a2b34903142e3bc73a (diff) | |
download | geiser-guile-c00f24907cf87589f4b28885507443d419385502.tar.gz geiser-guile-c00f24907cf87589f4b28885507443d419385502.tar.bz2 |
Racket: better help commands
For some reason that i don't fully understand, evaluating a function
in the racket/base namespace first thing after loading errortrace
breaks the help macro (!). This patches provides a workaround by
actually invoking help first thing when Geiser starts, with alibi that
it serves to preload the help index (in a separate thread).
While i was at it, i improved the message printed in the minibuffer
when no help is found.
Diffstat (limited to 'scheme/racket/geiser/startup.rkt')
-rw-r--r-- | scheme/racket/geiser/startup.rkt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scheme/racket/geiser/startup.rkt b/scheme/racket/geiser/startup.rkt index 6af06da..bf9293b 100644 --- a/scheme/racket/geiser/startup.rkt +++ b/scheme/racket/geiser/startup.rkt @@ -1,6 +1,6 @@ ;;; startup.rkt -- entry point -;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010, 2013 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -9,8 +9,6 @@ ;; Start date: Sat Apr 25, 2009 22:36 -;;; Code: - (require version/utils) (unless (version<=? "5.0" (version)) (error 'geiser |