aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/mail/rmail.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el
index efd3044b653..e29ac965947 100644
--- a/lisp/mail/rmail.el
+++ b/lisp/mail/rmail.el
@@ -2368,12 +2368,12 @@ the message. Point is at the beginning of the message."
2368With argument ARG, show the message header pruned if ARG is greater than zero; 2368With argument ARG, show the message header pruned if ARG is greater than zero;
2369otherwise, show it in full." 2369otherwise, show it in full."
2370 (interactive "P") 2370 (interactive "P")
2371 (setq rmail-header-style 2371 (let ((rmail-header-style
2372 (cond 2372 (cond
2373 ((and (numberp arg) (> arg 0)) 'normal) 2373 ((and (numberp arg) (> arg 0)) 'normal)
2374 ((eq rmail-header-style 'full) 'normal) 2374 ((eq rmail-header-style 'full) 'normal)
2375 (t 'full))) 2375 (t 'full))))
2376 (rmail-show-message-maybe)) 2376 (rmail-show-message-maybe)))
2377 2377
2378(defun rmail-beginning-of-message () 2378(defun rmail-beginning-of-message ()
2379 "Show current message starting from the beginning." 2379 "Show current message starting from the beginning."