aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-06-24 09:16:26 +0000
committerAndreas Schwab1998-06-24 09:16:26 +0000
commita6639a1637c059d46d2d05374674c1ad014aa2e1 (patch)
treec973aad3ab1bd31ed58e5fe5977b160a50a69f4c
parent13eacf8808062f6558ee1702e5972ad81057e535 (diff)
downloademacs-a6639a1637c059d46d2d05374674c1ad014aa2e1.tar.gz
emacs-a6639a1637c059d46d2d05374674c1ad014aa2e1.zip
(mh-yank-from-start-of-msg): Use `other' widget
type.
-rw-r--r--lisp/mail/mh-comp.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mail/mh-comp.el b/lisp/mail/mh-comp.el
index fcf5a64d0ba..c478cef18e8 100644
--- a/lisp/mail/mh-comp.el
+++ b/lisp/mail/mh-comp.el
@@ -26,7 +26,7 @@
26 26
27;;; Change Log: 27;;; Change Log:
28 28
29;; $Id: mh-comp.el,v 1.11 1997/09/15 19:45:16 rms Exp rms $ 29;; $Id: mh-comp.el,v 1.12 1997/09/19 04:27:56 rms Exp $
30 30
31;;; Code: 31;;; Code:
32 32
@@ -100,7 +100,9 @@ If non-nil, include the entire message. If the symbol `body', then yank the
100message minus the header. If nil, yank only the portion of the message 100message minus the header. If nil, yank only the portion of the message
101following the point. If the show buffer has a region, this variable is 101following the point. If the show buffer has a region, this variable is
102ignored." 102ignored."
103 :type '(choice (const t) (const nil) (const body)) 103 :type '(choice (const :tag "Below point" nil)
104 (const :tag "Without header" body)
105 (other :tag "Entire message" t))
104 :group 'mh-compose) 106 :group 'mh-compose)
105 107
106(defcustom mh-ins-buf-prefix "> " 108(defcustom mh-ins-buf-prefix "> "