diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-02-13 18:05:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-02-13 18:05:23 +0000 |
commit | e5cd8a87da242884420c93cb007f1247296c8b0d (patch) | |
tree | 70f3dd6666ff1f87508129da27c2988bf9847cab /lisp/emacs-lisp/pp.el | |
parent | 2eeeb0d2a0900023029fe5602f30b62694481268 (diff) | |
download | emacs-e5cd8a87da242884420c93cb007f1247296c8b0d.tar.gz |
(pp-to-string): Fix previous change.
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r-- | lisp/emacs-lisp/pp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index e2aaac535f2..a7dfefb3ba3 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el @@ -32,8 +32,7 @@ that `read' can handle, whenever this is possible." (set-buffer (generate-new-buffer " pp-to-string")) (unwind-protect (progn - (lisp-mode-variables) - (set-syntax-table emacs-lisp-mode-syntax-table) + (lisp-mode-variables t) (let ((print-escape-newlines pp-escape-newlines)) (prin1 object (current-buffer))) (goto-char (point-min)) |