diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-15 03:59:47 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-15 03:59:47 +0100 |
commit | 2cf00aa48f879c692da445b80a0dd93b4838c90d (patch) | |
tree | cd1befc610097bc15d5a72bdb8c612bfb4792324 /elisp/geiser-impl.el | |
parent | d0f026d2211905027804bcaa7c43e2c0d055322b (diff) | |
download | geiser-guile-2cf00aa48f879c692da445b80a0dd93b4838c90d.tar.gz geiser-guile-2cf00aa48f879c692da445b80a0dd93b4838c90d.tar.bz2 |
REPL: sexpy history file (fix for #30269)
The trick consists on using a comint-input-ring-separator that is
*not* a newline, both for reading and writing the history file.
Diffstat (limited to 'elisp/geiser-impl.el')
-rw-r--r-- | elisp/geiser-impl.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/elisp/geiser-impl.el b/elisp/geiser-impl.el index 4266cbc..4a5ce17 100644 --- a/elisp/geiser-impl.el +++ b/elisp/geiser-impl.el @@ -200,7 +200,9 @@ Here's how a typical call to this macro looks like: (display-help) (check-buffer geiser-guile--guess) (keywords geiser-guile--keywords)) -" + +This macro also defines a runner function (run-NAME) and a +switcher (switch-to-NAME), and provides geiser-NAME." (let ((name (if (listp name) (car name) name)) (parent (and (listp name) (cadr name)))) (unless (symbolp name) |