diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-12 23:44:17 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-12 23:44:17 +0100 |
commit | 6e9d4a346b4a947259b564063c0c3186e51670e0 (patch) | |
tree | 435ebe2fc5d63c9936b22a72b7a56fe249d8bab6 /elisp | |
parent | e070d76166d249695f1d2ee0269cc5c91537e0c9 (diff) | |
download | geiser-guile-6e9d4a346b4a947259b564063c0c3186e51670e0.tar.gz geiser-guile-6e9d4a346b4a947259b564063c0c3186e51670e0.tar.bz2 |
Hiding a bit inferior scheme buffers
By prefixing their name with a space... an argument against inferior
schemes, btw, is that they raise the barrier to entry for new schemes:
they must provide a networked REPL server.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-inf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-inf.el b/elisp/geiser-inf.el index 1e71299..329beea 100644 --- a/elisp/geiser-inf.el +++ b/elisp/geiser-inf.el @@ -52,7 +52,7 @@ list of the form (server PORT).") (unless seen (error "%s" "No prompt found!")))) (defun geiser-inf--make-buffer (impl) - (with-current-buffer (generate-new-buffer (format "* inferior %s *" impl)) + (with-current-buffer (generate-new-buffer (format " * inferior %s *" impl)) (inferior-scheme-mode) (current-buffer))) |