diff options
| author | Richard M. Stallman | 1996-01-03 18:36:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-01-03 18:36:29 +0000 |
| commit | f869bab8201744adc724af356f39c118a8e72140 (patch) | |
| tree | d767657fadb9e54d082e38f407f3f1a54c281f31 | |
| parent | 293e5aa6d15a03a64ff9081200a12b2fec698551 (diff) | |
| download | emacs-f869bab8201744adc724af356f39c118a8e72140.tar.gz emacs-f869bab8201744adc724af356f39c118a8e72140.zip | |
(mail-header-separator): Don't put on read-only property.
| -rw-r--r-- | lisp/mail/sendmail.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index a5fdc8d5d47..1c3b2dbc150 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -67,7 +67,12 @@ match the variable `mail-header-separator'.") | |||
| 67 | 67 | ||
| 68 | ;; Set up mail-header-separator for use as a category text property. | 68 | ;; Set up mail-header-separator for use as a category text property. |
| 69 | (put 'mail-header-separator 'rear-nonsticky '(category)) | 69 | (put 'mail-header-separator 'rear-nonsticky '(category)) |
| 70 | (put 'mail-header-separator 'read-only t) | 70 | ;;; This was a nice idea, for preventing accidental modification of |
| 71 | ;;; the separator. But I found it also prevented or obstructed | ||
| 72 | ;;; certain deliberate operations, such as copying the separator line | ||
| 73 | ;;; up to the top to send myself a copy of an already sent outgoing message | ||
| 74 | ;;; and other things. So I turned it off. --rms. | ||
| 75 | ;;;(put 'mail-header-separator 'read-only t) | ||
| 71 | 76 | ||
| 72 | ;;;###autoload | 77 | ;;;###autoload |
| 73 | (defvar mail-archive-file-name nil "\ | 78 | (defvar mail-archive-file-name nil "\ |