* don't mark the mail-header-separator as read-only

this seems to cause problems in some cases, where message-mode
  apparently requires the text to be writable.
This commit is contained in:
djcb 2014-04-27 11:28:58 +03:00
parent 5ef90a3432
commit 5cf67c6ea9
1 changed files with 3 additions and 1 deletions

View File

@ -245,7 +245,9 @@ separator is never written to the message file. Also see
(mu4e~draft-remove-mail-header-separator)
(let ((sepa (propertize mail-header-separator
'intangible t
'read-only "Can't touch this"
;; don't make this read-only, message-mode
;; seems to require it being writable in some cases
;;'read-only "Can't touch this"
'rear-nonsticky t
'font-lock-face 'mu4e-compose-separator-face)))
(widen)