diff options
| author | Richard M. Stallman | 1992-08-28 20:39:57 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-08-28 20:39:57 +0000 |
| commit | 5d305367662fbdf5f127794027673b8e1e65adf6 (patch) | |
| tree | bb7b04418aea9c9fad1392fa25c239c2e1b2f4dd /src/buffer.c | |
| parent | aec1184c2205099998ed74dc46a04df7c04b3d12 (diff) | |
| download | emacs-5d305367662fbdf5f127794027673b8e1e65adf6.tar.gz emacs-5d305367662fbdf5f127794027673b8e1e65adf6.zip | |
(syms_of_buffer): Made buffer-display-table,
buffer-field-list and buffer-undo-list allow any type of value.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index 15da8404157..4a6d6978bcc 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1562,7 +1562,7 @@ Automatically becomes buffer-local when set in any fashion."); | |||
| 1562 | Automatically becomes buffer-local when set in any fashion."); | 1562 | Automatically becomes buffer-local when set in any fashion."); |
| 1563 | 1563 | ||
| 1564 | DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, | 1564 | DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, |
| 1565 | make_number (Lisp_Vector), | 1565 | Qnil, |
| 1566 | "Display table that controls display of the contents of current buffer.\n\ | 1566 | "Display table that controls display of the contents of current buffer.\n\ |
| 1567 | Automatically becomes buffer-local when set in any fashion.\n\ | 1567 | Automatically becomes buffer-local when set in any fashion.\n\ |
| 1568 | The display table is a vector created with `make-display-table'.\n\ | 1568 | The display table is a vector created with `make-display-table'.\n\ |
| @@ -1579,7 +1579,7 @@ 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", ¤t_buffer->fieldlist, | 1581 | DEFVAR_PER_BUFFER ("buffer-field-list", ¤t_buffer->fieldlist, |
| 1582 | make_number (Lisp_Cons), | 1582 | Qnil, |
| 1583 | "List of fields in the current buffer. See `add-field'."); | 1583 | "List of fields in the current buffer. See `add-field'."); |
| 1584 | 1584 | ||
| 1585 | DEFVAR_BOOL ("check-protected-fields", check_protected_fields, | 1585 | DEFVAR_BOOL ("check-protected-fields", check_protected_fields, |
| @@ -1621,7 +1621,7 @@ The function is called, with no arguments, if it is non-nil."); | |||
| 1621 | Vfirst_change_function = Qnil; | 1621 | Vfirst_change_function = Qnil; |
| 1622 | 1622 | ||
| 1623 | DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, | 1623 | DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, |
| 1624 | make_number (Lisp_Cons), | 1624 | Qnil, |
| 1625 | "List of undo entries in current buffer.\n\ | 1625 | "List of undo entries in current buffer.\n\ |
| 1626 | Recent changes come first; older changes follow newer.\n\ | 1626 | Recent changes come first; older changes follow newer.\n\ |
| 1627 | \n\ | 1627 | \n\ |