comparison src/buffer.c @ 1041:da04b25b1759

Formatting change
author Jim Blandy <jimb@redhat.com>
date Sat, 29 Aug 1992 02:41:45 +0000
parents 59fa7697bb14
children beefc235076e
comparison
equal deleted inserted replaced
1040:eb7ebe86e885 1041:da04b25b1759
1517 make_number (Lisp_String), 1517 make_number (Lisp_String),
1518 "Name of file visited in current buffer, or nil if not visiting a file.\n\ 1518 "Name of file visited in current buffer, or nil if not visiting a file.\n\
1519 Each buffer has its own value of this variable."); 1519 Each buffer has its own value of this variable.");
1520 1520
1521 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name", 1521 DEFVAR_PER_BUFFER ("buffer-auto-save-file-name",
1522 &current_buffer->auto_save_file_name, 1522 &current_buffer->auto_save_file_name,
1523 make_number (Lisp_String), 1523 make_number (Lisp_String),
1524 "Name of file for auto-saving current buffer,\n\ 1524 "Name of file for auto-saving current buffer,\n\
1525 or nil if buffer should not be auto-saved.\n\ 1525 or nil if buffer should not be auto-saved.\n\
1526 Each buffer has its own value of this variable."); 1526 Each buffer has its own value of this variable.");
1527 1527
1576 the character used as an arrow for control characters (element 259);\n\ 1576 the character used as an arrow for control characters (element 259);\n\
1577 the decoration indicating the presence of invisible lines (element 260).\n\ 1577 the decoration indicating the presence of invisible lines (element 260).\n\
1578 If this variable is nil, the value of `standard-display-table' is used.\n\ 1578 If this variable is nil, the value of `standard-display-table' is used.\n\
1579 Each window can have its own, overriding display table."); 1579 Each window can have its own, overriding display table.");
1580 1580
1581 DEFVAR_PER_BUFFER ("buffer-field-list", &current_buffer->fieldlist, 1581 DEFVAR_PER_BUFFER ("buffer-field-list", &current_buffer->fieldlist, Qnil,
1582 Qnil,
1583 "List of fields in the current buffer. See `add-field'."); 1582 "List of fields in the current buffer. See `add-field'.");
1584 1583
1585 DEFVAR_BOOL ("check-protected-fields", check_protected_fields, 1584 DEFVAR_BOOL ("check-protected-fields", check_protected_fields,
1586 "Non-nil means don't allow modification of a protected field.\n\ 1585 "Non-nil means don't allow modification of a protected field.\n\
1587 See `add-field'."); 1586 See `add-field'.");
1618 DEFVAR_LISP ("first-change-function", &Vfirst_change_function, 1617 DEFVAR_LISP ("first-change-function", &Vfirst_change_function,
1619 "Function to call before changing a buffer which is unmodified.\n\ 1618 "Function to call before changing a buffer which is unmodified.\n\
1620 The function is called, with no arguments, if it is non-nil."); 1619 The function is called, with no arguments, if it is non-nil.");
1621 Vfirst_change_function = Qnil; 1620 Vfirst_change_function = Qnil;
1622 1621
1623 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, 1622 DEFVAR_PER_BUFFER ("buffer-undo-list", &current_buffer->undo_list, Qnil,
1624 Qnil,
1625 "List of undo entries in current buffer.\n\ 1623 "List of undo entries in current buffer.\n\
1626 Recent changes come first; older changes follow newer.\n\ 1624 Recent changes come first; older changes follow newer.\n\
1627 \n\ 1625 \n\
1628 An entry (START . END) represents an insertion which begins at\n\ 1626 An entry (START . END) represents an insertion which begins at\n\
1629 position START and ends at position END.\n\ 1627 position START and ends at position END.\n\