diff options
author | Ramprasad B <ramprasad_i82@yahoo.com> | 2006-11-03 13:54:32 +0000 |
---|---|---|
committer | Ramprasad B <ramprasad_i82@yahoo.com> | 2006-11-03 13:54:32 +0000 |
commit | 030d1efecb69befaff4a5c5e31ef8cd012796ed7 (patch) | |
tree | 92f61eca21b414af0e183b29589725fe2c2c17d3 /lisp/emacs-lisp/pp.el | |
parent | 3443198806e6f7e9c9c0dcb65584c528ddf464f9 (diff) | |
download | emacs-030d1efecb69befaff4a5c5e31ef8cd012796ed7.tar.gz |
Installed [sa2c@sa2c.net: pp-eval-last-sexp() does not eval last sexp] patch
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r-- | lisp/emacs-lisp/pp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index a9cb2abd741..77f8854e022 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el @@ -161,7 +161,7 @@ Ignores leading comment characters." (set-syntax-table stab) (if arg (insert (pp-to-string (eval exp))) - (pp-eval-expression exp)))) + (pp-eval-expression (eval exp))))) ;;; Test cases for quote ;; (pp-eval-expression ''(quote quote)) |