aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-26 00:05:33 +0000
committerRichard M. Stallman2001-11-26 00:05:33 +0000
commit6a15331f02cebb5169e4b5ee3eb6f0eb95b02193 (patch)
treea9f80521f4ccb79763d04fcaf57186abaf7a4f16 /src
parent5eea19a4fb6d324ff6788f2dc09ae6bf7519c3fc (diff)
downloademacs-6a15331f02cebb5169e4b5ee3eb6f0eb95b02193.tar.gz
emacs-6a15331f02cebb5169e4b5ee3eb6f0eb95b02193.zip
(Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
Diffstat (limited to 'src')
-rw-r--r--src/abbrev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/abbrev.c b/src/abbrev.c
index 51623ade93c..58ddd6dba49 100644
--- a/src/abbrev.c
+++ b/src/abbrev.c
@@ -234,8 +234,7 @@ Returns the abbrev symbol, if expansion took place. */)
234 234
235 value = Qnil; 235 value = Qnil;
236 236
237 if (!NILP (Vrun_hooks)) 237 Frun_hooks (1, &Qpre_abbrev_expand_hook);
238 call1 (Vrun_hooks, Qpre_abbrev_expand_hook);
239 238
240 wordstart = 0; 239 wordstart = 0;
241 if (!(BUFFERP (Vabbrev_start_location_buffer) 240 if (!(BUFFERP (Vabbrev_start_location_buffer)