diff options
| author | Ramprasad B | 2006-11-03 13:54:32 +0000 |
|---|---|---|
| committer | Ramprasad B | 2006-11-03 13:54:32 +0000 |
| commit | 030d1efecb69befaff4a5c5e31ef8cd012796ed7 (patch) | |
| tree | 92f61eca21b414af0e183b29589725fe2c2c17d3 | |
| parent | 3443198806e6f7e9c9c0dcb65584c528ddf464f9 (diff) | |
| download | emacs-030d1efecb69befaff4a5c5e31ef8cd012796ed7.tar.gz emacs-030d1efecb69befaff4a5c5e31ef8cd012796ed7.zip | |
Installed [sa2c@sa2c.net: pp-eval-last-sexp() does not eval last sexp] patch
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/pp.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 14eb059a1ff..7f408ec5e34 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-11-03 NIIMI Satoshi <sa2c@sa2c.net> | ||
| 2 | |||
| 3 | * pp.el (pp-eval-expression): Evaluate target sexp | ||
| 4 | |||
| 1 | 2006-11-02 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2006-11-02 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * server.el (server-auth-key): Remove. Replace by a process-property. | 7 | * server.el (server-auth-key): Remove. Replace by a process-property. |
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." | |||
| 161 | (set-syntax-table stab) | 161 | (set-syntax-table stab) |
| 162 | (if arg | 162 | (if arg |
| 163 | (insert (pp-to-string (eval exp))) | 163 | (insert (pp-to-string (eval exp))) |
| 164 | (pp-eval-expression exp)))) | 164 | (pp-eval-expression (eval exp))))) |
| 165 | 165 | ||
| 166 | ;;; Test cases for quote | 166 | ;;; Test cases for quote |
| 167 | ;; (pp-eval-expression ''(quote quote)) | 167 | ;; (pp-eval-expression ''(quote quote)) |