diff options
author | Po Lu <luangruo@yahoo.com> | 2023-05-18 09:04:57 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2023-05-18 09:04:57 +0800 |
commit | 074c0268fd32d6527e124cff386bb6b15cf90017 (patch) | |
tree | 62111c3c70d46a738f15514e988a707409ca45f4 /lisp/mail/rmail.el | |
parent | db48eff8cf4a88393c0209f663ca194ee37fa747 (diff) | |
parent | 5ef169ed701fa4f850fdca5563cdd468207d5d4f (diff) | |
download | emacs-feature/android.tar.gz |
Merge remote-tracking branch 'origin/master' into feature/androidfeature/android
Diffstat (limited to 'lisp/mail/rmail.el')
-rw-r--r-- | lisp/mail/rmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 2952db2a6bf..379e345bef1 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -2287,7 +2287,7 @@ significant attribute change was made." (insert value))) ;; Otherwise add a header line to record the attributes and set ;; all but this one to no. - (let ((header-value "--------")) + (let ((header-value (copy-sequence "--------"))) (aset header-value attr value) (goto-char (if limit (1- limit) (point-max))) (setq altered (/= value ?-)) |