diff options
| author | Glenn Morris | 2020-03-04 13:57:58 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-03-04 13:57:58 -0800 |
| commit | b5474ba1607fdca620cdee40a11cc0120697fc58 (patch) | |
| tree | 2a6f3706a050270a01f008355bf11e6d1532e2f5 /lisp/simple.el | |
| parent | 79f196551a23ec54c6ed67a094aedb4597d36cf5 (diff) | |
| parent | a3c2d186eb514b505e61c2a89a1df886dbfcb06b (diff) | |
| download | emacs-b5474ba1607fdca620cdee40a11cc0120697fc58.tar.gz emacs-b5474ba1607fdca620cdee40a11cc0120697fc58.zip | |
Merge from origin/emacs-27
a3c2d186eb (origin/emacs-27) CC Mode: Fix the handling of two adjacen...
a1abf73c76 Fix combine-change-calls-1 for when buffer-undo-list is t
db37dd2e84 Don't misinterpret doc string as initial value
40b217c2bf Bump checkdoc-version to match library header
60418a1ab2 Explain how to unset mode bindings (Bug#39802)
7cafbbe964 Fix describe-variable on values with circular syntax (Bug#...
592b1cfee9 Improve documentation of next-error-highlight-no-select (b...
Diffstat (limited to 'lisp/simple.el')
| -rw-r--r-- | lisp/simple.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 688dbcc947b..91736a60730 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -75,14 +75,16 @@ value of 1 means that nothing is amalgamated.") | |||
| 75 | :version "22.1") | 75 | :version "22.1") |
| 76 | 76 | ||
| 77 | (defcustom next-error-highlight 0.5 | 77 | (defcustom next-error-highlight 0.5 |
| 78 | "Highlighting of locations in selected source buffers. | 78 | "Highlighting of locations in the selected buffer. |
| 79 | If a number, highlight the locus in `next-error' face for the given time | 79 | If a number, highlight the locus in `next-error' face for the given time |
| 80 | in seconds, or until the next command is executed. | 80 | in seconds, or until the next command is executed. |
| 81 | If t, highlight the locus until the next command is executed, or until | 81 | If t, highlight the locus until the next command is executed, or until |
| 82 | some other locus replaces it. | 82 | some other locus replaces it. |
| 83 | If nil, don't highlight the locus in the source buffer. | 83 | If nil, don't highlight the locus in the source buffer. |
| 84 | If `fringe-arrow', indicate the locus by the fringe arrow | 84 | If `fringe-arrow', indicate the locus by the fringe arrow |
| 85 | indefinitely until some other locus replaces it." | 85 | indefinitely until some other locus replaces it. |
| 86 | See `next-error-highlight-no-select' to customize highlighting | ||
| 87 | of the locus in non-selected buffers." | ||
| 86 | :type '(choice (number :tag "Highlight for specified time") | 88 | :type '(choice (number :tag "Highlight for specified time") |
| 87 | (const :tag "Semipermanent highlighting" t) | 89 | (const :tag "Semipermanent highlighting" t) |
| 88 | (const :tag "No highlighting" nil) | 90 | (const :tag "No highlighting" nil) |
| @@ -91,12 +93,15 @@ indefinitely until some other locus replaces it." | |||
| 91 | :version "22.1") | 93 | :version "22.1") |
| 92 | 94 | ||
| 93 | (defcustom next-error-highlight-no-select 0.5 | 95 | (defcustom next-error-highlight-no-select 0.5 |
| 94 | "Highlighting of locations in `next-error-no-select'. | 96 | "Highlighting of locations in non-selected source buffers. |
| 97 | Usually non-selected buffers are displayed by `next-error-no-select'. | ||
| 95 | If number, highlight the locus in `next-error' face for given time in seconds. | 98 | If number, highlight the locus in `next-error' face for given time in seconds. |
| 96 | If t, highlight the locus indefinitely until some other locus replaces it. | 99 | If t, highlight the locus indefinitely until some other locus replaces it. |
| 97 | If nil, don't highlight the locus in the source buffer. | 100 | If nil, don't highlight the locus in the source buffer. |
| 98 | If `fringe-arrow', indicate the locus by the fringe arrow | 101 | If `fringe-arrow', indicate the locus by the fringe arrow |
| 99 | indefinitely until some other locus replaces it." | 102 | indefinitely until some other locus replaces it. |
| 103 | See `next-error-highlight' to customize highlighting of the locus | ||
| 104 | in the selected buffer." | ||
| 100 | :type '(choice (number :tag "Highlight for specified time") | 105 | :type '(choice (number :tag "Highlight for specified time") |
| 101 | (const :tag "Semipermanent highlighting" t) | 106 | (const :tag "Semipermanent highlighting" t) |
| 102 | (const :tag "No highlighting" nil) | 107 | (const :tag "No highlighting" nil) |