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
7775635d
Commit
7775635d
authored
Oct 08, 1998
by
Kenichi Handa
Browse files
(inhibit_modification_hooks): New variable.
(init_buffer_once): Initialize inhibit_modification_hooks to 0.
parent
347d3e9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/buffer.c
src/buffer.c
+5
-0
No files found.
src/buffer.c
View file @
7775635d
...
...
@@ -153,6 +153,9 @@ Lisp_Object Qfirst_change_hook;
Lisp_Object
Qbefore_change_functions
;
Lisp_Object
Qafter_change_functions
;
/* If nonzero, all modification hooks are suppressed. */
int
inhibit_modification_hooks
;
Lisp_Object
Qfundamental_mode
,
Qmode_class
,
Qpermanent_local
;
Lisp_Object
Qprotected_field
;
...
...
@@ -3943,6 +3946,8 @@ init_buffer_once ()
Vbuffer_alist
=
Qnil
;
Fset_buffer
(
Fget_buffer_create
(
build_string
(
"*scratch*"
)));
inhibit_modification_hooks
=
0
;
}
void
...
...
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