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/terminal.c | |
| parent | 7d0da90e7b98f5c09df82be9985cc27d30adea07 (diff) | |
| download | emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.tar.gz emacs-cd3520a41df21d80a9d894c58af2daba23c8dd24.zip | |
Move DEFSYM to lisp.h and use everywhere.
Diffstat (limited to 'src/terminal.c')
| -rw-r--r-- | src/terminal.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/terminal.c b/src/terminal.c index c135c0f93ef..67577adf3b4 100644 --- a/src/terminal.c +++ b/src/terminal.c | |||
| @@ -555,10 +555,8 @@ Each function is called with argument, the terminal. | |||
| 555 | This may be called just before actually deleting the terminal, | 555 | This may be called just before actually deleting the terminal, |
| 556 | or some time later. */); | 556 | or some time later. */); |
| 557 | Vdelete_terminal_functions = Qnil; | 557 | Vdelete_terminal_functions = Qnil; |
| 558 | Qdelete_terminal_functions = intern_c_string ("delete-terminal-functions"); | 558 | DEFSYM (Qdelete_terminal_functions, "delete-terminal-functions"); |
| 559 | staticpro (&Qdelete_terminal_functions); | 559 | DEFSYM (Qrun_hook_with_args, "run-hook-with-args"); |
| 560 | Qrun_hook_with_args = intern_c_string ("run-hook-with-args"); | ||
| 561 | staticpro (&Qrun_hook_with_args); | ||
| 562 | 560 | ||
| 563 | defsubr (&Sdelete_terminal); | 561 | defsubr (&Sdelete_terminal); |
| 564 | defsubr (&Sframe_terminal); | 562 | defsubr (&Sframe_terminal); |