aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1998-04-15 06:31:29 +0000
committerKarl Heuer1998-04-15 06:31:29 +0000
commit09130c7ebf83a45716fe486477a197e812d2f099 (patch)
tree3381377534dffd1fcf4660b20c86d1286a1ff03b
parentd3db616e13ccfff600069fde5efe5f2075662611 (diff)
downloademacs-09130c7ebf83a45716fe486477a197e812d2f099.tar.gz
emacs-09130c7ebf83a45716fe486477a197e812d2f099.zip
(mh-quit): mh-show-buffer can be nil.
-rw-r--r--lisp/mail/mh-e.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/mail/mh-e.el b/lisp/mail/mh-e.el
index c6fa468f4f1..0a22155a870 100644
--- a/lisp/mail/mh-e.el
+++ b/lisp/mail/mh-e.el
@@ -60,7 +60,7 @@
60;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985. 60;; Modified by James Larus, BBN, July 1984 and UCB, 1984 & 1985.
61;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu 61;; Rewritten for GNU Emacs, James Larus 1985. larus@ginger.berkeley.edu
62;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu 62;; Modified by Stephen Gildea 1988. gildea@lcs.mit.edu
63(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.17 1997/09/04 20:25:56 rms Exp rms $") 63(defconst mh-e-RCS-id "$Id: mh-e.el,v 1.18 1998/03/08 00:25:49 rms Exp kwzh $")
64 64
65;;; Code: 65;;; Code:
66 66
@@ -438,8 +438,9 @@ configuration, if one exists. Finish by running mh-quit-hook."
438 (mh-update-sequences) 438 (mh-update-sequences)
439 (mh-invalidate-show-buffer) 439 (mh-invalidate-show-buffer)
440 (quit-window) 440 (quit-window)
441 (if (get-buffer mh-show-buffer) 441 (and mh-show-buffer
442 (bury-buffer mh-show-buffer)) 442 (get-buffer mh-show-buffer)
443 (bury-buffer mh-show-buffer))
443 (if mh-previous-window-config 444 (if mh-previous-window-config
444 (set-window-configuration mh-previous-window-config)) 445 (set-window-configuration mh-previous-window-config))
445 (run-hooks 'mh-quit-hook)) 446 (run-hooks 'mh-quit-hook))