# HG changeset patch # User Richard M. Stallman # Date 715034397 0 # Node ID 59fa7697bb149561def79af4ae339503c962bb76 # Parent c17a6750293c252c0c9513dd4a5922238c4ad72b (syms_of_buffer): Made buffer-display-table, buffer-field-list and buffer-undo-list allow any type of value. diff -r c17a6750293c -r 59fa7697bb14 src/buffer.c --- a/src/buffer.c Fri Aug 28 05:45:03 1992 +0000 +++ b/src/buffer.c Fri Aug 28 20:39:57 1992 +0000 @@ -1562,7 +1562,7 @@ Automatically becomes buffer-local when set in any fashion."); DEFVAR_PER_BUFFER ("buffer-display-table", ¤t_buffer->display_table, - make_number (Lisp_Vector), + Qnil, "Display table that controls display of the contents of current buffer.\n\ Automatically becomes buffer-local when set in any fashion.\n\ The display table is a vector created with `make-display-table'.\n\ @@ -1579,7 +1579,7 @@ Each window can have its own, overriding display table."); DEFVAR_PER_BUFFER ("buffer-field-list", ¤t_buffer->fieldlist, - make_number (Lisp_Cons), + Qnil, "List of fields in the current buffer. See `add-field'."); DEFVAR_BOOL ("check-protected-fields", check_protected_fields, @@ -1621,7 +1621,7 @@ Vfirst_change_function = Qnil; DEFVAR_PER_BUFFER ("buffer-undo-list", ¤t_buffer->undo_list, - make_number (Lisp_Cons), + Qnil, "List of undo entries in current buffer.\n\ Recent changes come first; older changes follow newer.\n\ \n\