aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-07-30 00:50:59 +0000
committerDave Love1999-07-30 00:50:59 +0000
commit700c3b7c33cc22bd96ae9d556f6cd73733ad77fe (patch)
treec2b98ba4eb96923e507bc19f1b0945cad6cc639b
parent029ec30f69f532422eb9ad873b7811cb4413b02f (diff)
downloademacs-700c3b7c33cc22bd96ae9d556f6cd73733ad77fe.tar.gz
emacs-700c3b7c33cc22bd96ae9d556f6cd73733ad77fe.zip
Fix previous change.
-rw-r--r--lisp/emacs-lisp/lisp-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index 45f2c759e84..f7484c8e712 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -386,7 +386,7 @@ Return the result of evaluation."
386 ;; Skipping to the end of the specified region 386 ;; Skipping to the end of the specified region
387 ;; will make eval-region return. 387 ;; will make eval-region return.
388 (goto-char ,end) 388 (goto-char ,end)
389 ,form))))) 389 ',form)))))
390 ;; The result of evaluation has been put onto VALUES. So return it. 390 ;; The result of evaluation has been put onto VALUES. So return it.
391 (car values)) 391 (car values))
392 392