diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-03-06 01:30:16 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-03-06 01:30:16 +0100 |
commit | 845fc5e555e73449596ba475060fd2674f3b51e9 (patch) | |
tree | 5f039af84ae06b3378829c498190df480c75ac84 /lisp/textmodes/reftex.el | |
parent | d3877e8f063815efe92b3bced08f54f9c1644b74 (diff) | |
download | emacs-845fc5e555e73449596ba475060fd2674f3b51e9.tar.gz |
* lisp/bookmark.el:
* lisp/desktop.el:
* lisp/emacs-lock.el:
* lisp/ps-print.el:
* lisp/saveplace.el:
* lisp/net/tramp-cache.el:
* lisp/textmodes/reftex.el:
* lisp/org/org-id.el: Don't set `kill-emacs-hook' on noninteractive sessions.
Fixes: debbugs:8137
Diffstat (limited to 'lisp/textmodes/reftex.el')
-rw-r--r-- | lisp/textmodes/reftex.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 6719a647c36..7e150bff997 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -567,7 +567,7 @@ on the menu bar. "Save RefTeX's parse file for this buffer if the information has changed." ;; Save the parsing information if it was modified. ;; This function should be installed in `kill-buffer-hook'. - ;; We are careful to make sure nothing goes wring in this function. + ;; We are careful to make sure nothing goes wrong in this function. (when (and (boundp 'reftex-mode) reftex-mode (boundp 'reftex-save-parse-info) reftex-save-parse-info (boundp 'reftex-docstruct-symbol) reftex-docstruct-symbol @@ -2397,7 +2397,7 @@ IGNORE-WORDS List of words which should be removed from the string." (define-key reftex-mode-map reftex-extra-bindings-prefix reftex-extra-bindings-map)) - + ;;; ========================================================================= ;;; @@ -2568,7 +2568,8 @@ With optional NODE, go directly to that node." ;;; Install the kill-buffer and kill-emacs hooks ------------------------------ (add-hook 'kill-buffer-hook 'reftex-kill-buffer-hook) -(add-hook 'kill-emacs-hook 'reftex-kill-emacs-hook) +(unless noninteractive + (add-hook 'kill-emacs-hook 'reftex-kill-emacs-hook)) ;;; Run Hook ------------------------------------------------------------------ |