/[emacs]/emacs/src/buffer.c
ViewVC logotype

Diff of /emacs/src/buffer.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.373 by pj, Fri Nov 9 06:48:33 2001 UTC revision 1.374 by rms, Wed Nov 14 00:06:50 2001 UTC
# Line 5160  This is the same as (default-value 'indi Line 5160  This is the same as (default-value 'indi
5160        
5161    DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",    DEFVAR_LISP_NOPRO ("default-scroll-up-aggressively",
5162                       &buffer_defaults.scroll_up_aggressively,                       &buffer_defaults.scroll_up_aggressively,
5163                       doc: /* Default value of `scroll-up-aggressively' for buffers that                       doc: /* Default value of `scroll-up-aggressively'.
5164  don't override it.  This is the same as (default-value  This value applies in buffers that don't have their own local values.
5165  'scroll-up-aggressively).  */);  This variable is an alias for (default-value 'scroll-up-aggressively).  */);
5166        
5167    DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",    DEFVAR_LISP_NOPRO ("default-scroll-down-aggressively",
5168                       &buffer_defaults.scroll_down_aggressively,                       &buffer_defaults.scroll_down_aggressively,
5169                       doc: /* Default value of `scroll-down-aggressively' for buffers that                       doc: /* Default value of `scroll-down-aggressively'.
5170  don't override it.  This is the same as (default-value  This value applies in buffers that don't have their own local values.
5171  'scroll-down-aggressively).  */);  This variable is an alias for (default-value 'scroll-down-aggressively).  */);
5172        
5173    DEFVAR_PER_BUFFER ("header-line-format",    DEFVAR_PER_BUFFER ("header-line-format",
5174                       &current_buffer->header_line_format,                       &current_buffer->header_line_format,
5175                       Qnil,                       Qnil,
5176                       doc: /* Analogous to `mode-line-format', but for the mode line that can be                       doc: /* Analogous to `mode-line-format', but controls the header line.
5177  displayed at the top of a window.  */);  The header line appears, optionally, at the top of a window;
5178    the mode line appears at the bottom.  */);
5179        
5180    DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,    DEFVAR_PER_BUFFER ("mode-line-format", &current_buffer->mode_line_format,
5181                       Qnil,                       Qnil,
# Line 5290  This variable is never applied to a way Line 5291  This variable is never applied to a way
5291                       doc: /* *Non-nil means lines in the buffer are displayed right to left.  */);                       doc: /* *Non-nil means lines in the buffer are displayed right to left.  */);
5292    
5293    DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,    DEFVAR_PER_BUFFER ("truncate-lines", &current_buffer->truncate_lines, Qnil,
5294                       doc: /* *Non-nil means do not display continuation lines;                       doc: /* *Non-nil means do not display continuation lines.
5295  give each line of text one screen line.  Instead, give each line of text just one screen line.
5296    
5297  Note that this is overridden by the variable  Note that this is overridden by the variable
5298  `truncate-partial-width-windows' if that variable is non-nil  `truncate-partial-width-windows' if that variable is non-nil
# Line 5332  and then abbreviated with `abbreviate-fi Line 5333  and then abbreviated with `abbreviate-fi
5333    DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",    DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
5334                       &current_buffer->auto_save_file_name,                       &current_buffer->auto_save_file_name,
5335                       make_number (Lisp_String),                       make_number (Lisp_String),
5336                       doc: /* Name of file for auto-saving current buffer,                       doc: /* Name of file for auto-saving current buffer.
5337  or nil if buffer should not be auto-saved.  */);  If it is nil, that means don't auto-save this buffer.  */);
5338    
5339    DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,    DEFVAR_PER_BUFFER ("buffer-read-only", &current_buffer->read_only, Qnil,
5340                       doc: /* Non-nil if this buffer is read-only.  */);                       doc: /* Non-nil if this buffer is read-only.  */);
# Line 5349  Backing up is done before the first time Line 5350  Backing up is done before the first time
5350    
5351    DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,    DEFVAR_PER_BUFFER ("selective-display", &current_buffer->selective_display,
5352                       Qnil,                       Qnil,
5353                       doc: /* Non-nil enables selective display:                       doc: /* Non-nil enables selective display.
5354  Integer N as value means display only lines  An Integer N as value means display only lines
5355   that start with less than n columns of space.  that start with less than n columns of space.
5356  A value of t means, after a ^M, all the rest of the line is invisible.  A value of t means that the character ^M makes itself and
5357   Then ^M's in the file are written into files as newlines.  */);  all the rest of the line invisible; also, when saving the buffer
5358    in a file, save the ^M as a newline.  */);
5359    
5360  #ifndef old  #ifndef old
5361    DEFVAR_PER_BUFFER ("selective-display-ellipses",    DEFVAR_PER_BUFFER ("selective-display-ellipses",

Legend:
Removed from v.1.373  
changed lines
  Added in v.1.374

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26