Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
33f7013e
Commit
33f7013e
authored
Oct 01, 1992
by
Joseph Arceneaux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* buffer.c (reset_buffer): Do INITIALIZE_INTERVAL on the buffer's
interval component. (Fkill_buffer): Likewise.
parent
e221eae3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
src/buffer.c
src/buffer.c
+8
-0
No files found.
src/buffer.c
View file @
33f7013e
...
...
@@ -271,6 +271,10 @@ reset_buffer (b)
b
->
auto_save_file_name
=
Qnil
;
b
->
read_only
=
Qnil
;
b
->
fieldlist
=
Qnil
;
/* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
INITIALIZE_INTERVAL
(
b
,
NULL_INTERVAL
);
reset_buffer_local_variables
(
b
);
}
...
...
@@ -729,6 +733,10 @@ with `delete-process'.")
}
b
->
markers
=
Qnil
;
/* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
INITIALIZE_INTERVAL
(
b
,
NULL_INTERVAL
);
/* Perhaps we should explicitly free the interval tree here... */
b
->
name
=
Qnil
;
BUFFER_FREE
(
BUF_BEG_ADDR
(
b
));
b
->
undo_list
=
Qnil
;
...
...
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