diff options
| author | Eli Zaretskii | 2021-05-21 09:37:47 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-05-21 09:37:47 +0300 |
| commit | 8804ac857b3290852d8889e274186b20e906afdc (patch) | |
| tree | c416b41736525f074c54d6ed0dc4fec9379d96d2 | |
| parent | bcd92b5708083a6c10d4f0aa785cbd69fd8f7035 (diff) | |
| download | emacs-8804ac857b3290852d8889e274186b20e906afdc.tar.gz emacs-8804ac857b3290852d8889e274186b20e906afdc.zip | |
* src/buffer.c (syms_of_buffer) <ctl-arrow>: Doc fix. (Bug#48539)
| -rw-r--r-- | src/buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c index 60a45731d11..0772688361f 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5647,10 +5647,10 @@ inserts one or more TAB characters, this variable will affect the | |||
| 5647 | indentation step as well, even if `indent-tabs-mode' is non-nil. */); | 5647 | indentation step as well, even if `indent-tabs-mode' is non-nil. */); |
| 5648 | 5648 | ||
| 5649 | DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil, | 5649 | DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil, |
| 5650 | doc: /* Non-nil means display control chars with uparrow. | 5650 | doc: /* Non-nil means display control chars with uparrow `^'. |
| 5651 | A value of nil means use backslash and octal digits. | 5651 | A value of nil means use backslash `\\' and octal digits. |
| 5652 | This variable does not apply to characters whose display is specified | 5652 | This variable does not apply to characters whose display is specified in |
| 5653 | in the current display table (if there is one). */); | 5653 | the current display table (if there is one; see `standard-display-table'). */); |
| 5654 | 5654 | ||
| 5655 | DEFVAR_PER_BUFFER ("enable-multibyte-characters", | 5655 | DEFVAR_PER_BUFFER ("enable-multibyte-characters", |
| 5656 | &BVAR (current_buffer, enable_multibyte_characters), | 5656 | &BVAR (current_buffer, enable_multibyte_characters), |