# HG changeset patch # User Richard M. Stallman # Date 842549334 0 # Node ID 919ed1778c0bd421e9aa932dd37432046e3fef12 # Parent 2e26cb0991def592251f444ac50461ea3953f4b0 (pp-eval-expression): Set font-lock-default locally to nil. diff -r 2e26cb0991de -r 919ed1778c0b lisp/emacs-lisp/pp.el --- a/lisp/emacs-lisp/pp.el Thu Sep 12 17:02:52 1996 +0000 +++ b/lisp/emacs-lisp/pp.el Thu Sep 12 17:28:54 1996 +0000 @@ -134,7 +134,9 @@ (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)