aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-03-06 02:59:13 +0000
committerRichard M. Stallman1993-03-06 02:59:13 +0000
commita354518d21c9529420a7677072d6d0566f1abe5f (patch)
tree7342d048aae4e4f95c4c9705d7f4be4ea33728be /src/buffer.c
parent78d7ac46c72e9c093191a3065ce6540033803599 (diff)
downloademacs-a354518d21c9529420a7677072d6d0566f1abe5f.tar.gz
emacs-a354518d21c9529420a7677072d6d0566f1abe5f.zip
(check_protected_fields): Variable deleted.
(syms_of_buffer): Delete vars buffer-field-list and check-protected-fields.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/buffer.c b/src/buffer.c
index a1e1c063f65..1b510b24651 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -97,10 +97,6 @@ static Lisp_Object Vbuffer_local_symbols;
97 buffer_slot_type_mismatch will signal an error. */ 97 buffer_slot_type_mismatch will signal an error. */
98struct buffer buffer_local_types; 98struct buffer buffer_local_types;
99 99
100/* Nonzero means don't allow modification of protected fields. */
101
102int check_protected_fields;
103
104Lisp_Object Fset_buffer (); 100Lisp_Object Fset_buffer ();
105void set_buffer_internal (); 101void set_buffer_internal ();
106 102
@@ -1624,14 +1620,6 @@ The remaining five elements are ropes that control the display of\n\
1624If this variable is nil, the value of `standard-display-table' is used.\n\ 1620If this variable is nil, the value of `standard-display-table' is used.\n\
1625Each window can have its own, overriding display table."); 1621Each window can have its own, overriding display table.");
1626 1622
1627 DEFVAR_PER_BUFFER ("buffer-field-list", &current_buffer->fieldlist, Qnil,
1628 "List of fields in the current buffer. See `add-field'.");
1629
1630 DEFVAR_BOOL ("check-protected-fields", &check_protected_fields,
1631 "Non-nil means don't allow modification of a protected field.\n\
1632See `add-field'.");
1633 check_protected_fields = 0;
1634
1635/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, 1623/*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
1636 "Don't ask."); 1624 "Don't ask.");
1637*/ 1625*/