diff options
| author | Richard M. Stallman | 1996-09-12 17:28:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-12 17:28:54 +0000 |
| commit | 9614b740acd2fb94fc91a63ed57778fa1647281e (patch) | |
| tree | 0a96f7ca02041013d2c36b67b4b9963fbbc9c112 | |
| parent | 9a0fc2087ff4c46107054e6e2dc28613825ac33b (diff) | |
| download | emacs-9614b740acd2fb94fc91a63ed57778fa1647281e.tar.gz emacs-9614b740acd2fb94fc91a63ed57778fa1647281e.zip | |
(pp-eval-expression): Set font-lock-default locally to nil.
| -rw-r--r-- | lisp/emacs-lisp/pp.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/pp.el b/lisp/emacs-lisp/pp.el index 90f9323acd4..013ce8402d3 100644 --- a/lisp/emacs-lisp/pp.el +++ b/lisp/emacs-lisp/pp.el | |||
| @@ -134,7 +134,9 @@ value." | |||
| 134 | (pp (car values))) | 134 | (pp (car values))) |
| 135 | (save-excursion | 135 | (save-excursion |
| 136 | (set-buffer "*Pp Eval Output*") | 136 | (set-buffer "*Pp Eval Output*") |
| 137 | (emacs-lisp-mode)))) | 137 | (emacs-lisp-mode) |
| 138 | (make-local-variable 'font-lock-verbose) | ||
| 139 | (setq font-lock-verbose nil)))) | ||
| 138 | 140 | ||
| 139 | ;;;###autoload | 141 | ;;;###autoload |
| 140 | (defun pp-eval-last-sexp (arg) | 142 | (defun pp-eval-last-sexp (arg) |