diff options
| author | Paul Eggert | 2013-01-21 23:48:59 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-01-21 23:48:59 -0800 |
| commit | 593a5f2efdac581be0964c0eb8583dde2b661173 (patch) | |
| tree | 9565ed994cdecc5028036e9bf0f97c743cc3a7be | |
| parent | b41b8a7eff8382797d373dcd0ea91ae3ec5fa562 (diff) | |
| download | emacs-593a5f2efdac581be0964c0eb8583dde2b661173.tar.gz emacs-593a5f2efdac581be0964c0eb8583dde2b661173.zip | |
* emacs.c (Qkill_emacs_hook): Now static.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/emacs.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 57e024757ec..a06f9e2fcd5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2013-01-22 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2013-01-22 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * emacs.c (Qkill_emacs_hook): Now static. | ||
| 4 | |||
| 3 | * fileio.c (Finsert_file_contents): Simplify. | 5 | * fileio.c (Finsert_file_contents): Simplify. |
| 4 | Remove unnecessary assignments and tests. | 6 | Remove unnecessary assignments and tests. |
| 5 | 7 | ||
diff --git a/src/emacs.c b/src/emacs.c index b7888d343f1..597fb2daf95 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -133,7 +133,8 @@ Lisp_Object Qfile_name_handler_alist; | |||
| 133 | 133 | ||
| 134 | Lisp_Object Qrisky_local_variable; | 134 | Lisp_Object Qrisky_local_variable; |
| 135 | 135 | ||
| 136 | Lisp_Object Qkill_emacs, Qkill_emacs_hook; | 136 | Lisp_Object Qkill_emacs; |
| 137 | static Lisp_Object Qkill_emacs_hook; | ||
| 137 | 138 | ||
| 138 | /* If true, Emacs should not attempt to use a window-specific code, | 139 | /* If true, Emacs should not attempt to use a window-specific code, |
| 139 | but instead should use the virtual terminal under which it was started. */ | 140 | but instead should use the virtual terminal under which it was started. */ |