diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-04-28 02:10:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-04-28 02:10:42 +0000 |
commit | fa5976191e6aec246fa574ac088270a735d51d46 (patch) | |
tree | 9ec3b38896336d51dd8e0a330ddddf5d6de11d32 /lisp/ielm.el | |
parent | 676e436a0f6286d8bb96ca33cd6c422d0d8ed66e (diff) | |
download | emacs-fa5976191e6aec246fa574ac088270a735d51d46.tar.gz |
(ielm-eval-input): More of previous change.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r-- | lisp/ielm.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el index 9983c01a0f5..7c2dc4d6409 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -348,9 +348,9 @@ simply inserts a newline." (setq ielm-output (concat ielm-output "*** " ielm-error-type " *** ")) (setq ielm-output (concat ielm-output ielm-result))) ;; There was no error, so shift the ::: values - (setq ::: ::) - (setq :: :) - (setq : ielm-result)) + (setq *** **) + (setq ** *) + (setq * ielm-result)) (setq ielm-output (concat ielm-output "\n")))) (setq ielm-output (concat ielm-output ielm-prompt)) (comint-output-filter (ielm-process) ielm-output))) |