diff options
| author | Gregory Heytings | 2022-07-08 23:36:18 +0200 |
|---|---|---|
| committer | Gregory Heytings | 2022-07-08 23:36:18 +0200 |
| commit | 60e51595c8a89ffc34dbe0d36c75d1c119a7d5c5 (patch) | |
| tree | e9736bab9374cbe83431fc70f499b51ae1c92313 /src/buffer.c | |
| parent | e31cffb5abfe68b62047532765a2076ac4885475 (diff) | |
| download | emacs-60e51595c8a89ffc34dbe0d36c75d1c119a7d5c5.tar.gz emacs-60e51595c8a89ffc34dbe0d36c75d1c119a7d5c5.zip | |
Revert commit 38b3780f6e.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/buffer.c b/src/buffer.c index d5b4292a21d..509ce51b55e 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5276,9 +5276,6 @@ init_buffer_once (void) | |||
| 5276 | XSETFASTINT (BVAR (&buffer_local_flags, tab_line_format), idx); ++idx; | 5276 | XSETFASTINT (BVAR (&buffer_local_flags, tab_line_format), idx); ++idx; |
| 5277 | XSETFASTINT (BVAR (&buffer_local_flags, cursor_type), idx); ++idx; | 5277 | XSETFASTINT (BVAR (&buffer_local_flags, cursor_type), idx); ++idx; |
| 5278 | XSETFASTINT (BVAR (&buffer_local_flags, extra_line_spacing), idx); ++idx; | 5278 | XSETFASTINT (BVAR (&buffer_local_flags, extra_line_spacing), idx); ++idx; |
| 5279 | XSETFASTINT (BVAR (&buffer_local_flags, auto_narrow__narrowing_state), idx); | ||
| 5280 | /* Make this one a permanent local. */ | ||
| 5281 | buffer_permanent_local_flags[idx++] = 1; | ||
| 5282 | XSETFASTINT (BVAR (&buffer_local_flags, cursor_in_non_selected_windows), idx); ++idx; | 5279 | XSETFASTINT (BVAR (&buffer_local_flags, cursor_in_non_selected_windows), idx); ++idx; |
| 5283 | 5280 | ||
| 5284 | /* buffer_local_flags contains no pointers, so it's safe to treat it | 5281 | /* buffer_local_flags contains no pointers, so it's safe to treat it |
| @@ -5665,7 +5662,7 @@ A string is printed verbatim in the mode line except for %-constructs: | |||
| 5665 | %p -- print percent of buffer above top of window, or Top, Bot or All. | 5662 | %p -- print percent of buffer above top of window, or Top, Bot or All. |
| 5666 | %P -- print percent of buffer above bottom of window, perhaps plus Top, | 5663 | %P -- print percent of buffer above bottom of window, perhaps plus Top, |
| 5667 | or print Bottom or All. | 5664 | or print Bottom or All. |
| 5668 | %n -- print Narrow or Auto-Narrow if appropriate. | 5665 | %n -- print Narrow if appropriate. |
| 5669 | %t -- visited file is text or binary (if OS supports this distinction). | 5666 | %t -- visited file is text or binary (if OS supports this distinction). |
| 5670 | %z -- print mnemonics of keyboard, terminal, and buffer coding systems. | 5667 | %z -- print mnemonics of keyboard, terminal, and buffer coding systems. |
| 5671 | %Z -- like %z, but including the end-of-line format. | 5668 | %Z -- like %z, but including the end-of-line format. |
| @@ -6366,10 +6363,6 @@ see `display-graphic-p'. | |||
| 6366 | If value is a floating point number, it specifies the spacing relative | 6363 | If value is a floating point number, it specifies the spacing relative |
| 6367 | to the default frame line height. A value of nil means add no extra space. */); | 6364 | to the default frame line height. A value of nil means add no extra space. */); |
| 6368 | 6365 | ||
| 6369 | DEFVAR_PER_BUFFER ("auto-narrow--narrowing-state", | ||
| 6370 | &BVAR (current_buffer, auto_narrow__narrowing_state), Qnil, | ||
| 6371 | doc: /* Internal variable used by `auto-narrow-mode'. */); | ||
| 6372 | |||
| 6373 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", | 6366 | DEFVAR_PER_BUFFER ("cursor-in-non-selected-windows", |
| 6374 | &BVAR (current_buffer, cursor_in_non_selected_windows), Qnil, | 6367 | &BVAR (current_buffer, cursor_in_non_selected_windows), Qnil, |
| 6375 | doc: /* Non-nil means show a cursor in non-selected windows. | 6368 | doc: /* Non-nil means show a cursor in non-selected windows. |