Mercurial > emacs
changeset 16171:919ed1778c0b
(pp-eval-expression): Set font-lock-default locally to nil.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 12 Sep 1996 17:28:54 +0000 |
parents | 2e26cb0991de |
children | b7131e99a796 |
files | lisp/emacs-lisp/pp.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)