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/undo.c | |
| parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
| download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.zip | |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/undo.c')
| -rw-r--r-- | src/undo.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/undo.c b/src/undo.c index e7e9ae5632e..7e121e8b27d 100644 --- a/src/undo.c +++ b/src/undo.c | |||
| @@ -637,11 +637,8 @@ Return what remains of the list. */) | |||
| 637 | void | 637 | void |
| 638 | syms_of_undo (void) | 638 | syms_of_undo (void) |
| 639 | { | 639 | { |
| 640 | Qinhibit_read_only = intern_c_string ("inhibit-read-only"); | 640 | DEFSYM (Qinhibit_read_only, "inhibit-read-only"); |
| 641 | staticpro (&Qinhibit_read_only); | 641 | DEFSYM (Qapply, "apply"); |
| 642 | |||
| 643 | Qapply = intern_c_string ("apply"); | ||
| 644 | staticpro (&Qapply); | ||
| 645 | 642 | ||
| 646 | pending_boundary = Qnil; | 643 | pending_boundary = Qnil; |
| 647 | staticpro (&pending_boundary); | 644 | staticpro (&pending_boundary); |