diff options
| author | Juanma Barranquero | 2011-06-24 23:25:22 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-06-24 23:25:22 +0200 |
| commit | cd3520a41df21d80a9d894c58af2daba23c8dd24 (patch) | |
| tree | 945eaef322c65471833954ddce161a7a913ee3c8 /src/editfns.c | |
| parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
| download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.zip | |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/editfns.c b/src/editfns.c index c0c0e530265..5328b714b0f 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -4738,9 +4738,7 @@ syms_of_editfns (void) | |||
| 4738 | environbuf = 0; | 4738 | environbuf = 0; |
| 4739 | initial_tz = 0; | 4739 | initial_tz = 0; |
| 4740 | 4740 | ||
| 4741 | Qbuffer_access_fontify_functions | 4741 | DEFSYM (Qbuffer_access_fontify_functions, "buffer-access-fontify-functions"); |
| 4742 | = intern_c_string ("buffer-access-fontify-functions"); | ||
| 4743 | staticpro (&Qbuffer_access_fontify_functions); | ||
| 4744 | 4742 | ||
| 4745 | DEFVAR_LISP ("inhibit-field-text-motion", Vinhibit_field_text_motion, | 4743 | DEFVAR_LISP ("inhibit-field-text-motion", Vinhibit_field_text_motion, |
| 4746 | doc: /* Non-nil means text motion commands don't notice fields. */); | 4744 | doc: /* Non-nil means text motion commands don't notice fields. */); |
| @@ -4802,10 +4800,8 @@ functions if all the text being accessed has this property. */); | |||
| 4802 | defsubr (&Sregion_beginning); | 4800 | defsubr (&Sregion_beginning); |
| 4803 | defsubr (&Sregion_end); | 4801 | defsubr (&Sregion_end); |
| 4804 | 4802 | ||
| 4805 | staticpro (&Qfield); | 4803 | DEFSYM (Qfield, "field"); |
| 4806 | Qfield = intern_c_string ("field"); | 4804 | DEFSYM (Qboundary, "boundary"); |
| 4807 | staticpro (&Qboundary); | ||
| 4808 | Qboundary = intern_c_string ("boundary"); | ||
| 4809 | defsubr (&Sfield_beginning); | 4805 | defsubr (&Sfield_beginning); |
| 4810 | defsubr (&Sfield_end); | 4806 | defsubr (&Sfield_end); |
| 4811 | defsubr (&Sfield_string); | 4807 | defsubr (&Sfield_string); |