Mercurial > emacs
changeset 4226:7c7e33d6386d
(syms_of_buffer): Lisp var doc fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 22 Jul 1993 08:53:43 +0000 |
parents | f3717bd9ecf9 |
children | b283670201b4 |
files | src/buffer.c |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.c Thu Jul 22 08:36:39 1993 +0000 +++ b/src/buffer.c Thu Jul 22 08:53:43 1993 +0000 @@ -2369,6 +2369,8 @@ If `overwrite-mode-binary', self-insertion replaces newlines and tabs too.\n\ Automatically becomes buffer-local when set in any fashion."); +#if 0 /* The doc string is too long for some compilers, + but make-docfile can find it in this comment. */ DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, Qnil, "Display table that controls display of the contents of current buffer.\n\ @@ -2388,6 +2390,9 @@ a vector of characters).\n\ If this variable is nil, the value of `standard-display-table' is used.\n\ Each window can have its own, overriding display table."); +#endif + DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, + Qnil, ""); /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, "Don't ask."); @@ -2424,6 +2429,8 @@ Qfirst_change_hook = intern ("first-change-hook"); staticpro (&Qfirst_change_hook); +#if 0 /* The doc string is too long for some compilers, + but make-docfile can find it in this comment. */ DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, Qnil, "List of undo entries in current buffer.\n\ Recent changes come first; older changes follow newer.\n\ @@ -2453,6 +2460,9 @@ between two undo boundaries as a single step to be undone.\n\ \n\ If the value of the variable is t, undo information is not recorded."); +#endif + DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, Qnil, + ""); DEFVAR_PER_BUFFER ("mark-active", ¤t_buffer->mark_active, Qnil, "Non-nil means the mark and region are currently active in this buffer.\n\