aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2004-03-05 12:56:55 +0000
committerStefan Monnier2004-03-05 12:56:55 +0000
commit528f876a84a425180351449bf65362efda5d2205 (patch)
tree8eb200b7e8380e8c7d47fa0293a27a59ee87b8a7
parentfc2a68b5379de8cecbf85e5b81bd0f3743787026 (diff)
downloademacs-528f876a84a425180351449bf65362efda5d2205.tar.gz
emacs-528f876a84a425180351449bf65362efda5d2205.zip
(message-mode): Fix last change.
-rw-r--r--lisp/gnus/message.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 874307383c2..4c6284b6d85 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -1531,9 +1531,10 @@ M-RET `message-newline-and-reformat' (break the line and reformat)."
1531 (set (make-local-variable 'message-mime-part) 0) 1531 (set (make-local-variable 'message-mime-part) 0)
1532 (message-setup-fill-variables) 1532 (message-setup-fill-variables)
1533 ;; Allow using comment commands to add/remove quoting. 1533 ;; Allow using comment commands to add/remove quoting.
1534 (set (make-local-variable 'comment-start) message-yank-prefix) 1534 (when message-yank-prefix
1535 (set (make-local-variable 'comment-start-skip) 1535 (set (make-local-variable 'comment-start) message-yank-prefix)
1536 (concat "^" (regexp-quote message-yank-prefix) "[ \t]*")) 1536 (set (make-local-variable 'comment-start-skip)
1537 (concat "^" (regexp-quote message-yank-prefix) "[ \t]*")))
1537 ;;(when (fboundp 'mail-hist-define-keys) 1538 ;;(when (fboundp 'mail-hist-define-keys)
1538 ;; (mail-hist-define-keys)) 1539 ;; (mail-hist-define-keys))
1539 (if (featurep 'xemacs) 1540 (if (featurep 'xemacs)