From: Richard M. Stallman Date: Mon, 13 Feb 1995 18:05:23 +0000 (+0000) Subject: (pp-to-string): Fix previous change. X-Git-Tag: emacs-19.34~5126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5cd8a87da242884420c93cb007f1247296c8b0d;p=emacs.git (pp-to-string): Fix previous change. --- 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))