aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2006-09-24 20:38:47 +0000
committerRichard M. Stallman2006-09-24 20:38:47 +0000
commit7408ee973aafe715e78fba063e314c2dfc73f1c0 (patch)
tree295a2e5400f95bb742dbdd96c37bfa37618ee9cc
parent9595af7e4423d31d54e98971c3254c3659fd2ceb (diff)
downloademacs-7408ee973aafe715e78fba063e314c2dfc73f1c0.tar.gz
emacs-7408ee973aafe715e78fba063e314c2dfc73f1c0.zip
(next-error-highlight, next-error-highlight-no-select): Default to 0.5.
(yank-excluded-properties): Add `fontified'.
-rw-r--r--lisp/simple.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 1d1e34c77e3..b2d7ff29257 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -128,7 +128,7 @@ If no other buffer exists, the buffer `*scratch*' is returned."
128 :group 'next-error 128 :group 'next-error
129 :version "22.1") 129 :version "22.1")
130 130
131(defcustom next-error-highlight 0.1 131(defcustom next-error-highlight 0.5
132 "*Highlighting of locations in selected source buffers. 132 "*Highlighting of locations in selected source buffers.
133If number, highlight the locus in `next-error' face for given time in seconds. 133If number, highlight the locus in `next-error' face for given time in seconds.
134If t, highlight the locus indefinitely until some other locus replaces it. 134If t, highlight the locus indefinitely until some other locus replaces it.
@@ -141,8 +141,8 @@ If `fringe-arrow', indicate the locus by the fringe arrow."
141 :group 'next-error 141 :group 'next-error
142 :version "22.1") 142 :version "22.1")
143 143
144(defcustom next-error-highlight-no-select 0.1 144(defcustom next-error-highlight-no-select 0.5
145 "*Highlighting of locations in non-selected source buffers. 145 "*Highlighting of locations in `next-error-no-select'.
146If number, highlight the locus in `next-error' face for given time in seconds. 146If number, highlight the locus in `next-error' face for given time in seconds.
147If t, highlight the locus indefinitely until some other locus replaces it. 147If t, highlight the locus indefinitely until some other locus replaces it.
148If nil, don't highlight the locus in the source buffer. 148If nil, don't highlight the locus in the source buffer.
@@ -2659,7 +2659,7 @@ The argument is used for internal purposes; do not supply one."
2659;; This is actually used in subr.el but defcustom does not work there. 2659;; This is actually used in subr.el but defcustom does not work there.
2660(defcustom yank-excluded-properties 2660(defcustom yank-excluded-properties
2661 '(read-only invisible intangible field mouse-face help-echo local-map keymap 2661 '(read-only invisible intangible field mouse-face help-echo local-map keymap
2662 yank-handler follow-link) 2662 yank-handler follow-link fontified)
2663 "*Text properties to discard when yanking. 2663 "*Text properties to discard when yanking.
2664The value should be a list of text properties to discard or t, 2664The value should be a list of text properties to discard or t,
2665which means to discard all text properties." 2665which means to discard all text properties."