diff options
| author | Markus Rost | 2002-10-11 05:38:53 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-10-11 05:38:53 +0000 |
| commit | d77b70e5578f89e541859203b059cd36c3de6f31 (patch) | |
| tree | d739e7485909e53c770ecf8ad7f8442ae4191c2c /src | |
| parent | 56e5818fd65b2c87e43a3b39fe69116c3c0c6ffb (diff) | |
| download | emacs-d77b70e5578f89e541859203b059cd36c3de6f31.tar.gz emacs-d77b70e5578f89e541859203b059cd36c3de6f31.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/emacs.c | 8 | ||||
| -rw-r--r-- | src/lread.c | 3 |
3 files changed, 14 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 37bbae8866a..b0c1d0b132d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2002-10-11 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in | ||
| 4 | batch mode). | ||
| 5 | |||
| 6 | * lread.c (Fload): Doc fix (load-suffixes). | ||
| 7 | |||
| 1 | 2002-10-10 Steven Tamm <steventamm@mac.com> | 8 | 2002-10-10 Steven Tamm <steventamm@mac.com> |
| 2 | 9 | ||
| 3 | * macterm.c (syms_of_macterm, mac_get_mouse_btn): Reversed | 10 | * macterm.c (syms_of_macterm, mac_get_mouse_btn): Reversed |
diff --git a/src/emacs.c b/src/emacs.c index 96e33928a51..2bf28d0568c 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -2302,11 +2302,13 @@ Emacs is running. */); | |||
| 2302 | doc: /* Non-nil means Emacs is running without interactive terminal. */); | 2302 | doc: /* Non-nil means Emacs is running without interactive terminal. */); |
| 2303 | 2303 | ||
| 2304 | DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook, | 2304 | DEFVAR_LISP ("kill-emacs-hook", &Vkill_emacs_hook, |
| 2305 | doc: /* Hook to be run whenever kill-emacs is called. | 2305 | doc: /* Hook to be run when kill-emacs is called. |
| 2306 | Since kill-emacs may be invoked when the terminal is disconnected (or | 2306 | Since `kill-emacs' may be invoked when the terminal is disconnected (or |
| 2307 | in other similar situations), functions placed on this hook should not | 2307 | in other similar situations), functions placed on this hook should not |
| 2308 | expect to be able to interact with the user. To ask for confirmation, | 2308 | expect to be able to interact with the user. To ask for confirmation, |
| 2309 | see `kill-emacs-query-functions' instead. */); | 2309 | see `kill-emacs-query-functions' instead. |
| 2310 | |||
| 2311 | The hook is not run in batch mode, i.e., if `noninteractive' is non-nil. */); | ||
| 2310 | Vkill_emacs_hook = Qnil; | 2312 | Vkill_emacs_hook = Qnil; |
| 2311 | 2313 | ||
| 2312 | empty_string = build_string (""); | 2314 | empty_string = build_string (""); |
diff --git a/src/lread.c b/src/lread.c index fa3b5cdd4ec..43fbe352f2c 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -641,7 +641,8 @@ record_load_unwind (old) | |||
| 641 | DEFUN ("load", Fload, Sload, 1, 5, 0, | 641 | DEFUN ("load", Fload, Sload, 1, 5, 0, |
| 642 | doc: /* Execute a file of Lisp code named FILE. | 642 | doc: /* Execute a file of Lisp code named FILE. |
| 643 | First try FILE with `.elc' appended, then try with `.el', | 643 | First try FILE with `.elc' appended, then try with `.el', |
| 644 | then try FILE unmodified. Environment variable references in FILE | 644 | then try FILE unmodified (the exact suffixes are determined by |
| 645 | `load-suffixes'). Environment variable references in FILE | ||
| 645 | are replaced with their values by calling `substitute-in-file-name'. | 646 | are replaced with their values by calling `substitute-in-file-name'. |
| 646 | This function searches the directories in `load-path'. | 647 | This function searches the directories in `load-path'. |
| 647 | If optional second arg NOERROR is non-nil, | 648 | If optional second arg NOERROR is non-nil, |