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 | 9bf7ade943a755881837a28d77c4e9eb30ad8137 (patch) | |
tree | fa072150f41dfd55f8681ace43c05ae1335e462f /elisp/geiser-impl.el | |
parent | 557fce4325f5dcdce89a925553edf0a22f3910b6 (diff) | |
download | geiser-9bf7ade943a755881837a28d77c4e9eb30ad8137.tar.gz geiser-9bf7ade943a755881837a28d77c4e9eb30ad8137.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) |