aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1996-01-09 23:38:20 +0000
committerKarl Heuer1996-01-09 23:38:20 +0000
commitced1d19aebcf2bb16f7ef8d29e1a44e9d7d59cad (patch)
treeb674a7e2061537eca65d62f54729d20998b465bc /src
parent36bbad1d7e05c4127e66305541364a29a3f2ed97 (diff)
downloademacs-ced1d19aebcf2bb16f7ef8d29e1a44e9d7d59cad.tar.gz
emacs-ced1d19aebcf2bb16f7ef8d29e1a44e9d7d59cad.zip
(update_buffer_properties): Delete superfluous &'s.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index 4f72ed6da51..d54f494ef76 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -1218,10 +1218,10 @@ update_buffer_properties (start, end)
1218 Vbuffer_access_fontified_property, 1218 Vbuffer_access_fontified_property,
1219 Qnil, Qnil); 1219 Qnil, Qnil);
1220 if (! NILP (tem)) 1220 if (! NILP (tem))
1221 Frun_hook_with_args (3, &args); 1221 Frun_hook_with_args (3, args);
1222 } 1222 }
1223 else 1223 else
1224 Frun_hook_with_args (3, &args); 1224 Frun_hook_with_args (3, args);
1225 } 1225 }
1226#endif 1226#endif
1227} 1227}