aboutsummaryrefslogtreecommitdiffstats
path: root/src/insdel.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-06-24 23:25:22 +0200
committerJuanma Barranquero2011-06-24 23:25:22 +0200
commitcd3520a41df21d80a9d894c58af2daba23c8dd24 (patch)
tree945eaef322c65471833954ddce161a7a913ee3c8 /src/insdel.c
parent7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff)
downloademacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz
emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.zip
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/insdel.c')
-rw-r--r--src/insdel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/insdel.c b/src/insdel.c
index c52785cd33d..0cae578925d 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -2219,8 +2219,7 @@ syms_of_insdel (void)
2219This affects `before-change-functions' and `after-change-functions', 2219This affects `before-change-functions' and `after-change-functions',
2220as well as hooks attached to text properties and overlays. */); 2220as well as hooks attached to text properties and overlays. */);
2221 inhibit_modification_hooks = 0; 2221 inhibit_modification_hooks = 0;
2222 Qinhibit_modification_hooks = intern_c_string ("inhibit-modification-hooks"); 2222 DEFSYM (Qinhibit_modification_hooks, "inhibit-modification-hooks");
2223 staticpro (&Qinhibit_modification_hooks);
2224 2223
2225 defsubr (&Scombine_after_change_execute); 2224 defsubr (&Scombine_after_change_execute);
2226} 2225}