aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 9932c649044..4966c322286 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5175,7 +5175,6 @@ init_buffer_once ()
5175 buffer_defaults.word_wrap = Qnil; 5175 buffer_defaults.word_wrap = Qnil;
5176 buffer_defaults.ctl_arrow = Qt; 5176 buffer_defaults.ctl_arrow = Qt;
5177 buffer_defaults.bidi_display_reordering = Qnil; 5177 buffer_defaults.bidi_display_reordering = Qnil;
5178 buffer_defaults.direction_reversed = Qnil;
5179 buffer_defaults.bidi_paragraph_direction = Qnil; 5178 buffer_defaults.bidi_paragraph_direction = Qnil;
5180 buffer_defaults.cursor_type = Qt; 5179 buffer_defaults.cursor_type = Qt;
5181 buffer_defaults.extra_line_spacing = Qnil; 5180 buffer_defaults.extra_line_spacing = Qnil;
@@ -5262,7 +5261,6 @@ init_buffer_once ()
5262 XSETFASTINT (buffer_local_flags.cache_long_line_scans, idx); ++idx; 5261 XSETFASTINT (buffer_local_flags.cache_long_line_scans, idx); ++idx;
5263 XSETFASTINT (buffer_local_flags.category_table, idx); ++idx; 5262 XSETFASTINT (buffer_local_flags.category_table, idx); ++idx;
5264 XSETFASTINT (buffer_local_flags.bidi_display_reordering, idx); ++idx; 5263 XSETFASTINT (buffer_local_flags.bidi_display_reordering, idx); ++idx;
5265 XSETFASTINT (buffer_local_flags.direction_reversed, idx); ++idx;
5266 XSETFASTINT (buffer_local_flags.bidi_paragraph_direction, idx); ++idx; 5264 XSETFASTINT (buffer_local_flags.bidi_paragraph_direction, idx); ++idx;
5267 XSETFASTINT (buffer_local_flags.buffer_file_coding_system, idx); 5265 XSETFASTINT (buffer_local_flags.buffer_file_coding_system, idx);
5268 /* Make this one a permanent local. */ 5266 /* Make this one a permanent local. */
@@ -5784,11 +5782,6 @@ The variable `coding-system-for-write', if non-nil, overrides this variable.
5784 5782
5785This variable is never applied to a way of decoding a file while reading it. */); 5783This variable is never applied to a way of decoding a file while reading it. */);
5786 5784
5787 DEFVAR_PER_BUFFER ("direction-reversed",
5788 &current_buffer->direction_reversed, Qnil,
5789 doc: /* Non-nil means set beginning of lines at the right edge of the window.
5790See also the variable `bidi-display-reordering'. */);
5791
5792 DEFVAR_PER_BUFFER ("bidi-display-reordering", 5785 DEFVAR_PER_BUFFER ("bidi-display-reordering",
5793 &current_buffer->bidi_display_reordering, Qnil, 5786 &current_buffer->bidi_display_reordering, Qnil,
5794 doc: /* Non-nil means reorder bidirectional text for display in the visual order. 5787 doc: /* Non-nil means reorder bidirectional text for display in the visual order.
@@ -5797,12 +5790,12 @@ See also the variable `direction-reversed'. */);
5797 DEFVAR_PER_BUFFER ("bidi-paragraph-direction", 5790 DEFVAR_PER_BUFFER ("bidi-paragraph-direction",
5798 &current_buffer->bidi_paragraph_direction, Qnil, 5791 &current_buffer->bidi_paragraph_direction, Qnil,
5799 doc: /* *If non-nil, forces directionality of text paragraphs in the buffer. 5792 doc: /* *If non-nil, forces directionality of text paragraphs in the buffer.
5800 5793
5801If this is nil (the default), the direction of each paragraph is 5794If this is nil (the default), the direction of each paragraph is
5802determined by the first strong directional character of its text. 5795determined by the first strong directional character of its text.
5803The values of `right-to-left' and `left-to-right' override that. 5796The values of `right-to-left' and `left-to-right' override that.
5804Any other value is treated as nil. 5797Any other value is treated as nil.
5805 5798
5806This variable has no effect unless the buffer's value of 5799This variable has no effect unless the buffer's value of
5807\`bidi-display-reordering' is non-nil. */); 5800\`bidi-display-reordering' is non-nil. */);
5808 5801