diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-21 03:35:06 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-21 03:35:06 +0000 |
commit | d5f2f20b976686ef8b2ca28b2ab26a52ab623973 (patch) | |
tree | c6c327da247427bd887e741c5d5c47df2dd1c0b5 | |
parent | 5f6691db7f31f1b3e5ce39fa25ac80d095dd75db (diff) | |
download | emacs-d5f2f20b976686ef8b2ca28b2ab26a52ab623973.tar.gz |
Elements of kill-emacs-query-functions return nil, not non-nil,
to prevent Emacs from being killed.
-rw-r--r-- | lispref/os.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/os.texi b/lispref/os.texi index 3c7e46518f3..9a09667e914 100644 --- a/lispref/os.texi +++ b/lispref/os.texi @@ -435,7 +435,7 @@ After asking the standard questions, @code{save-buffers-kill-emacs} calls the functions in the list @code{kill-buffer-query-functions}, in order of appearance, with no arguments. These functions can ask for additional confirmation from the user. If any of them returns -non-@code{nil}, Emacs is not killed. +@code{nil}, Emacs is not killed. @end defvar @defvar kill-emacs-hook |