aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/pp.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-12 17:28:54 +0000
committerRichard M. Stallman <[email protected]>1996-09-12 17:28:54 +0000
commit9614b740acd2fb94fc91a63ed57778fa1647281e (patch)
tree0a96f7ca02041013d2c36b67b4b9963fbbc9c112 /lisp/emacs-lisp/pp.el
parent9a0fc2087ff4c46107054e6e2dc28613825ac33b (diff)
(pp-eval-expression): Set font-lock-default locally to nil.
Diffstat (limited to 'lisp/emacs-lisp/pp.el')
-rw-r--r--lisp/emacs-lisp/pp.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el
index 90f9323acd..013ce8402d 100644
--- a/lisp/emacs-lisp/pp.el
+++ b/lisp/emacs-lisp/pp.el
@@ -134,7 +134,9 @@ value."
(pp (car values)))
(save-excursion
(set-buffer "*Pp Eval Output*")
- (emacs-lisp-mode))))
+ (emacs-lisp-mode)
+ (make-local-variable 'font-lock-verbose)
+ (setq font-lock-verbose nil))))
;;;###autoload
(defun pp-eval-last-sexp (arg)