1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-31 17:30:54 -08:00

* src/buffer.c (syms_of_buffer): Doc fix (Bug#6902).

This commit is contained in:
Chong Yidong 2011-04-10 16:55:52 -04:00
parent 7e735aaf4d
commit fde4eb868f
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-04-10 Chong Yidong <cyd@stupidchicken.com>
* buffer.c (syms_of_buffer): Doc fix (Bug#6902).
2011-04-08 Chong Yidong <cyd@stupidchicken.com>
* ftfont.c (get_adstyle_property, ftfont_pattern_entity): Use

View file

@ -5746,7 +5746,8 @@ Linefeed indents to this column in Fundamental mode. */);
DEFVAR_PER_BUFFER ("tab-width", &current_buffer->tab_width,
make_number (LISP_INT_TAG),
doc: /* *Distance between tab stops (for display of tab characters), in columns. */);
doc: /* *Distance between tab stops (for display of tab characters), in columns.
This should be an integer greater than zero. */);
DEFVAR_PER_BUFFER ("ctl-arrow", &current_buffer->ctl_arrow, Qnil,
doc: /* *Non-nil means display control chars with uparrow.