diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-11-20 16:43:57 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-11-20 16:43:57 +0100 |
commit | ea218f424ae3a016b439f2e2d2abe0a167bac78e (patch) | |
tree | e88b0303dfa54ae1f68e70b5b8c965a3c5835f28 /lisp/epa.el | |
parent | 8c801138acfb5b1068a78b1a10e055d2e7952c9e (diff) | |
download | emacs-ea218f424ae3a016b439f2e2d2abe0a167bac78e.tar.gz emacs-ea218f424ae3a016b439f2e2d2abe0a167bac78e.tar.bz2 emacs-ea218f424ae3a016b439f2e2d2abe0a167bac78e.zip |
Don't set XEmacs only properties start-open and end-open
* lisp/epa.el (epa-sign-region, epa-encrypt-region):
* lisp/erc/erc.el (erc-display-prompt):
* lisp/gnus/message.el (message-forward-make-body-mime):
* lisp/net/eudc-bob.el (eudc-bob-display-jpeg)
(eudc-bob-display-audio, eudc-bob-display-generic-binary):
* lisp/url/url-http.el
(url-http-chunked-encoding-after-change-function): Don't set XEmacs
only properties start-open and end-open.
Diffstat (limited to 'lisp/epa.el')
-rw-r--r-- | lisp/epa.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/epa.el b/lisp/epa.el index 4e288283d13..d6c7946c939 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -1070,9 +1070,7 @@ If no one is selected, default secret key is used. " (list 'epa-coding-system-used epa-last-coding-system-specified 'front-sticky nil - 'rear-nonsticky t - 'start-open t - 'end-open t))))) + 'rear-nonsticky t))))) (define-obsolete-function-alias 'epa--derived-mode-p 'derived-mode-p "28.1") @@ -1147,9 +1145,7 @@ If no one is selected, symmetric encryption will be performed. ") (list 'epa-coding-system-used epa-last-coding-system-specified 'front-sticky nil - 'rear-nonsticky t - 'start-open t - 'end-open t))))) + 'rear-nonsticky t))))) ;;;; Key Management |