diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 23:25:22 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-06-24 23:25:22 +0200 |
commit | cd3520a41df21d80a9d894c58af2daba23c8dd24 (patch) | |
tree | 945eaef322c65471833954ddce161a7a913ee3c8 /src/fringe.c | |
parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/fringe.c')
-rw-r--r-- | src/fringe.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/fringe.c b/src/fringe.c index d886ac48852..a4dc9433aff 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -1738,18 +1738,12 @@ Return nil if POS is not visible in WINDOW. */) void syms_of_fringe (void) { - Qtruncation = intern_c_string ("truncation"); - staticpro (&Qtruncation); - Qcontinuation = intern_c_string ("continuation"); - staticpro (&Qcontinuation); - Qoverlay_arrow = intern_c_string ("overlay-arrow"); - staticpro (&Qoverlay_arrow); - Qempty_line = intern_c_string ("empty-line"); - staticpro (&Qempty_line); - Qtop_bottom = intern_c_string ("top-bottom"); - staticpro (&Qtop_bottom); - Qhollow_small = intern_c_string ("hollow-small"); - staticpro (&Qhollow_small); + DEFSYM (Qtruncation, "truncation"); + DEFSYM (Qcontinuation, "continuation"); + DEFSYM (Qoverlay_arrow, "overlay-arrow"); + DEFSYM (Qempty_line, "empty-line"); + DEFSYM (Qtop_bottom, "top-bottom"); + DEFSYM (Qhollow_small, "hollow-small"); defsubr (&Sdestroy_fringe_bitmap); defsubr (&Sdefine_fringe_bitmap); |