diff options
| author | Paul Eggert | 2016-01-05 09:01:21 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-05 09:02:31 -0800 |
| commit | 221240c9254957a1f2df1e9a1687e757d0b5d59b (patch) | |
| tree | 85cefc82d787964c37bb1720dfb1a045dca1ddb9 /src/buffer.c | |
| parent | 977d3eabe3c1a6eb3577f36117409d76c5ffc0b7 (diff) | |
| download | emacs-221240c9254957a1f2df1e9a1687e757d0b5d59b.tar.gz emacs-221240c9254957a1f2df1e9a1687e757d0b5d59b.zip | |
Reword transient-mark-mode doc string
* src/buffer.c (syms_of_buffer): Reword doc string to avoid confusion.
The value 'lambda (literally) can be interpreted as (quote lambda),
which is not intended here; we want just the lambda symbol.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index 493312b52bf..29f38d1b9b1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6204,11 +6204,11 @@ all windows or just the selected window. | |||
| 6204 | 6204 | ||
| 6205 | Lisp programs may give this variable certain special values: | 6205 | Lisp programs may give this variable certain special values: |
| 6206 | 6206 | ||
| 6207 | - A value of \\='lambda (literally) enables Transient Mark mode temporarily. | 6207 | - The symbol ‘lambda’ enables Transient Mark mode temporarily. |
| 6208 | It is disabled again after any subsequent action that would | 6208 | The mode is disabled again after any subsequent action that would |
| 6209 | normally deactivate the mark (e.g. buffer modification). | 6209 | normally deactivate the mark (e.g. buffer modification). |
| 6210 | 6210 | ||
| 6211 | - A value of (only . OLDVAL) enables Transient Mark mode | 6211 | - The pair (only . OLDVAL) enables Transient Mark mode |
| 6212 | temporarily. After any subsequent point motion command that is | 6212 | temporarily. After any subsequent point motion command that is |
| 6213 | not shift-translated, or any other action that would normally | 6213 | not shift-translated, or any other action that would normally |
| 6214 | deactivate the mark (e.g. buffer modification), the value of | 6214 | deactivate the mark (e.g. buffer modification), the value of |