aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-10 06:47:58 +0000
committerRichard M. Stallman2005-02-10 06:47:58 +0000
commit9bb25ed3b898cb59f403be1ee9356d4718e3af22 (patch)
treefa9be20dd001ed133e588805863a8423ab2185b6 /lisp
parenta4bdcdf3788ae972a2a7c701f97bd2c2865491fc (diff)
downloademacs-9bb25ed3b898cb59f403be1ee9356d4718e3af22.tar.gz
emacs-9bb25ed3b898cb59f403be1ee9356d4718e3af22.zip
(eval-expression-print-format): Avoid warning about edebug-active.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 03a91fb4db0..3f3c41422a1 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -902,7 +902,7 @@ display the result of expression evaluation."
902 (eq this-command last-command) 902 (eq this-command last-command)
903 (if (boundp 'edebug-active) edebug-active))) 903 (if (boundp 'edebug-active) edebug-active)))
904 (let ((char-string 904 (let ((char-string
905 (if (or (and (boundp 'edebug-active) edebug-active) 905 (if (or (if (boundp 'edebug-active) edebug-active)
906 (memq this-command '(eval-last-sexp eval-print-last-sexp))) 906 (memq this-command '(eval-last-sexp eval-print-last-sexp)))
907 (prin1-char value)))) 907 (prin1-char value))))
908 (if char-string 908 (if char-string
@@ -4674,7 +4674,8 @@ of the differing parts is, by contrast, slightly highlighted."
4674 (point-min) 4674 (point-min)
4675 'mouse-face)) 4675 'mouse-face))
4676 (element-common-end 4676 (element-common-end
4677 (+ (or element-start nil) common-string-length)) 4677 (and element-start
4678 (+ (or element-start nil) common-string-length)))
4678 (maxp (point-max))) 4679 (maxp (point-max)))
4679 (while (and element-start (< element-common-end maxp)) 4680 (while (and element-start (< element-common-end maxp))
4680 (when (and (get-char-property element-start 'mouse-face) 4681 (when (and (get-char-property element-start 'mouse-face)