aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-22 08:53:43 +0000
committerRichard M. Stallman1993-07-22 08:53:43 +0000
commit54939090dc87d4ed11c68855a07769e3141d3fc9 (patch)
tree6b446526e5caee6e4d01e460c845f6d4d3d6816c /src/buffer.c
parentc901003d61adb7bd8446782f9fa8c510c162dbae (diff)
downloademacs-54939090dc87d4ed11c68855a07769e3141d3fc9.tar.gz
emacs-54939090dc87d4ed11c68855a07769e3141d3fc9.zip
(syms_of_buffer): Lisp var doc fixes.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index f85772c34e3..5fbcad2c5d9 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -2369,6 +2369,8 @@ until the tab is filled in.\n\
2369If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\ 2369If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\
2370Automatically becomes buffer-local when set in any fashion."); 2370Automatically becomes buffer-local when set in any fashion.");
2371 2371
2372#if 0 /* The doc string is too long for some compilers,
2373 but make-docfile can find it in this comment. */
2372 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table, 2374 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
2373 Qnil, 2375 Qnil,
2374 "Display table that controls display of the contents of current buffer.\n\ 2376 "Display table that controls display of the contents of current buffer.\n\
@@ -2388,6 +2390,9 @@ The remaining five elements control the display of\n\
2388 a vector of characters).\n\ 2390 a vector of characters).\n\
2389If this variable is nil, the value of `standard-display-table' is used.\n\ 2391If this variable is nil, the value of `standard-display-table' is used.\n\
2390Each window can have its own, overriding display table."); 2392Each window can have its own, overriding display table.");
2393#endif
2394 DEFVAR_PER_BUFFER ("buffer-display-table", &current_buffer->display_table,
2395 Qnil, "");
2391 2396
2392/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, 2397/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
2393 "Don't ask."); 2398 "Don't ask.");
@@ -2424,6 +2429,8 @@ The functions are run using the `run-hooks' function.");
2424 Qfirst_change_hook = intern ("first-change-hook"); 2429 Qfirst_change_hook = intern ("first-change-hook");
2425 staticpro (&Qfirst_change_hook); 2430 staticpro (&Qfirst_change_hook);
2426 2431
2432#if 0 /* The doc string is too long for some compilers,
2433 but make-docfile can find it in this comment. */
2427 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil, 2434 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
2428 "List of undo entries in current buffer.\n\ 2435 "List of undo entries in current buffer.\n\
2429Recent changes come first; older changes follow newer.\n\ 2436Recent changes come first; older changes follow newer.\n\
@@ -2453,6 +2460,9 @@ nil marks undo boundaries. The undo command treats the changes\n\
2453between two undo boundaries as a single step to be undone.\n\ 2460between two undo boundaries as a single step to be undone.\n\
2454\n\ 2461\n\
2455If the value of the variable is t, undo information is not recorded."); 2462If the value of the variable is t, undo information is not recorded.");
2463#endif
2464 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
2465 "");
2456 2466
2457 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil, 2467 DEFVAR_PER_BUFFER ("mark-active", &current_buffer->mark_active, Qnil,
2458 "Non-nil means the mark and region are currently active in this buffer.\n\ 2468 "Non-nil means the mark and region are currently active in this buffer.\n\