Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5d305367
Commit
5d305367
authored
Aug 28, 1992
by
Richard M. Stallman
Browse files
(syms_of_buffer): Made buffer-display-table,
buffer-field-list and buffer-undo-list allow any type of value.
parent
aec1184c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/buffer.c
src/buffer.c
+3
-3
No files found.
src/buffer.c
View file @
5d305367
...
...
@@ -1562,7 +1562,7 @@ Automatically becomes buffer-local when set in any fashion.");
Automatically becomes buffer-local when set in any fashion."
);
DEFVAR_PER_BUFFER
(
"buffer-display-table"
,
&
current_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 @@ If this variable is nil, the value of `standard-display-table' is used.\n\
Each window can have its own, overriding display table."
);
DEFVAR_PER_BUFFER
(
"buffer-field-list"
,
&
current_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 @@ The function is called, with no arguments, if it is non-nil.");
Vfirst_change_function
=
Qnil
;
DEFVAR_PER_BUFFER
(
"buffer-undo-list"
,
&
current_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
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment