aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorJoakim Verona2013-05-27 23:14:19 +0200
committerJoakim Verona2013-05-27 23:14:19 +0200
commit5cf62a1639c5993c1fd6b532f92325b28a13ee79 (patch)
treed67d1c7c583947f164ee7494601d5c9decbd6b0f /src/buffer.c
parent3b2a9bcfc08c74d95f46d634fadc758decb1c2b0 (diff)
parent6ef3db10430c653e302ca5983ade6f8eaa186f85 (diff)
downloademacs-5cf62a1639c5993c1fd6b532f92325b28a13ee79.tar.gz
emacs-5cf62a1639c5993c1fd6b532f92325b28a13ee79.zip
Merge remote-tracking branch 'origin/trunk' into xwidget
Conflicts: ChangeLog lisp/ChangeLog lisp/progmodes/octave.el src/Makefile.in
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 3810d3db079..abebdf21135 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5501,6 +5501,8 @@ This is the same as (default-value 'left-margin). */);
5501 DEFVAR_BUFFER_DEFAULTS ("default-tab-width", 5501 DEFVAR_BUFFER_DEFAULTS ("default-tab-width",
5502 tab_width, 5502 tab_width,
5503 doc: /* Default value of `tab-width' for buffers that do not override it. 5503 doc: /* Default value of `tab-width' for buffers that do not override it.
5504NOTE: This controls the display width of a TAB character, and not
5505the size of an indentation step.
5504This is the same as (default-value 'tab-width). */); 5506This is the same as (default-value 'tab-width). */);
5505 5507
5506 DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search", 5508 DEFVAR_BUFFER_DEFAULTS ("default-case-fold-search",
@@ -5692,6 +5694,8 @@ Linefeed indents to this column in Fundamental mode. */);
5692 DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width), 5694 DEFVAR_PER_BUFFER ("tab-width", &BVAR (current_buffer, tab_width),
5693 Qintegerp, 5695 Qintegerp,
5694 doc: /* Distance between tab stops (for display of tab characters), in columns. 5696 doc: /* Distance between tab stops (for display of tab characters), in columns.
5697NOTE: This controls the display width of a TAB character, and not
5698the size of an indentation step.
5695This should be an integer greater than zero. */); 5699This should be an integer greater than zero. */);
5696 5700
5697 DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil, 5701 DEFVAR_PER_BUFFER ("ctl-arrow", &BVAR (current_buffer, ctl_arrow), Qnil,