aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-02-13 18:05:23 +0000
committerRichard M. Stallman <[email protected]>1995-02-13 18:05:23 +0000
commite5cd8a87da242884420c93cb007f1247296c8b0d (patch)
tree70f3dd6666ff1f87508129da27c2988bf9847cab
parent2eeeb0d2a0900023029fe5602f30b62694481268 (diff)
(pp-to-string): Fix previous change.
-rw-r--r--lisp/emacs-lisp/pp.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el
index e2aaac535f..a7dfefb3ba 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))