diff options
| author | djcb <djcb@djcbsoftware.nl> | 2014-04-27 11:28:58 +0300 |
|---|---|---|
| committer | djcb <djcb@djcbsoftware.nl> | 2014-04-27 11:28:58 +0300 |
| commit | 5cf67c6ea9b022c1fd440d30b530d7b5a925cb16 (patch) | |
| tree | ded5bf31948ec3ea509cc97cc8db208bfb074d5e /mu4e | |
| parent | 5ef90a34328d5ec160cc91e8a86bf68b1cb6164d (diff) | |
* 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.
Diffstat (limited to 'mu4e')
| -rw-r--r-- | mu4e/mu4e-draft.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mu4e/mu4e-draft.el b/mu4e/mu4e-draft.el index 051777a..22195b5 100644 --- a/mu4e/mu4e-draft.el +++ b/mu4e/mu4e-draft.el @@ -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) |
