aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2020-11-20 16:43:57 +0100
committerStefan Kangas2020-11-20 16:43:57 +0100
commitea218f424ae3a016b439f2e2d2abe0a167bac78e (patch)
treee88b0303dfa54ae1f68e70b5b8c965a3c5835f28
parent8c801138acfb5b1068a78b1a10e055d2e7952c9e (diff)
downloademacs-ea218f424ae3a016b439f2e2d2abe0a167bac78e.tar.gz
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.
-rw-r--r--lisp/epa.el8
-rw-r--r--lisp/erc/erc.el3
-rw-r--r--lisp/gnus/message.el2
-rw-r--r--lisp/net/eudc-bob.el12
-rw-r--r--lisp/url/url-http.el4
5 files changed, 8 insertions, 21 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. "
1070 (list 'epa-coding-system-used 1070 (list 'epa-coding-system-used
1071 epa-last-coding-system-specified 1071 epa-last-coding-system-specified
1072 'front-sticky nil 1072 'front-sticky nil
1073 'rear-nonsticky t 1073 'rear-nonsticky t)))))
1074 'start-open t
1075 'end-open t)))))
1076 1074
1077(define-obsolete-function-alias 'epa--derived-mode-p 'derived-mode-p "28.1") 1075(define-obsolete-function-alias 'epa--derived-mode-p 'derived-mode-p "28.1")
1078 1076
@@ -1147,9 +1145,7 @@ If no one is selected, symmetric encryption will be performed. ")
1147 (list 'epa-coding-system-used 1145 (list 'epa-coding-system-used
1148 epa-last-coding-system-specified 1146 epa-last-coding-system-specified
1149 'front-sticky nil 1147 'front-sticky nil
1150 'rear-nonsticky t 1148 'rear-nonsticky t)))))
1151 'start-open t
1152 'end-open t)))))
1153 1149
1154;;;; Key Management 1150;;;; Key Management
1155 1151
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index bf7b16d448e..94ea0de7ee7 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -4014,8 +4014,7 @@ If FACE is non-nil, it will be used to propertize the prompt. If it is nil,
4014 ;; of the prompt, but stuff typed in front of the prompt 4014 ;; of the prompt, but stuff typed in front of the prompt
4015 ;; shall remain part of the prompt. 4015 ;; shall remain part of the prompt.
4016 (setq prompt (propertize prompt 4016 (setq prompt (propertize prompt
4017 'start-open t ; XEmacs 4017 'rear-nonsticky t
4018 'rear-nonsticky t ; Emacs
4019 'erc-prompt t 4018 'erc-prompt t
4020 'field t 4019 'field t
4021 'front-sticky t 4020 'front-sticky t
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 0782778fd43..5bdf53763a2 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -7651,7 +7651,7 @@ Optional DIGEST will use digest to forward."
7651 ;; Consider there is no illegible text. 7651 ;; Consider there is no illegible text.
7652 (add-text-properties 7652 (add-text-properties
7653 b (point) 7653 b (point)
7654 '(no-illegible-text t rear-nonsticky t start-open t)))) 7654 '(no-illegible-text t rear-nonsticky t))))
7655 7655
7656(defun message-forward-make-body-mml (forward-buffer) 7656(defun message-forward-make-body-mml (forward-buffer)
7657 (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n") 7657 (insert "\n\n<#mml type=message/rfc822 disposition=inline>\n")
diff --git a/lisp/net/eudc-bob.el b/lisp/net/eudc-bob.el
index bb6682520ae..b2069ed6ef8 100644
--- a/lisp/net/eudc-bob.el
+++ b/lisp/net/eudc-bob.el
@@ -153,9 +153,7 @@ display a button."
153 'end-glyph (if inline glyph) 153 'end-glyph (if inline glyph)
154 'duplicable t 154 'duplicable t
155 'invisible inline 155 'invisible inline
156 'start-open t 156 'object-data data))))
157 'end-open t
158 'object-data data))))
159 ((fboundp 'create-image) 157 ((fboundp 'create-image)
160 (let* ((image (create-image data nil t)) 158 (let* ((image (create-image data nil t))
161 (props (list 'object-data data 'eudc-image image))) 159 (props (list 'object-data data 'eudc-image image)))
@@ -192,9 +190,7 @@ display a button."
192 eudc-bob-sound-keymap 190 eudc-bob-sound-keymap
193 eudc-bob-sound-menu 191 eudc-bob-sound-menu
194 (list 'duplicable t 192 (list 'duplicable t
195 'start-open t 193 'object-data data)))
196 'end-open t
197 'object-data data)))
198 194
199(defun eudc-bob-display-generic-binary (data) 195(defun eudc-bob-display-generic-binary (data)
200 "Display a button for unidentified binary DATA." 196 "Display a button for unidentified binary DATA."
@@ -202,9 +198,7 @@ display a button."
202 eudc-bob-generic-keymap 198 eudc-bob-generic-keymap
203 eudc-bob-generic-menu 199 eudc-bob-generic-menu
204 (list 'duplicable t 200 (list 'duplicable t
205 'start-open t 201 'object-data data)))
206 'end-open t
207 'object-data data)))
208 202
209(defun eudc-bob-play-sound-at-point () 203(defun eudc-bob-play-sound-at-point ()
210 "Play the sound data contained in the button at point." 204 "Play the sound data contained in the button at point."
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 8532da1d1fb..75330d33277 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -1119,9 +1119,7 @@ the end of the document."
1119 (beginning-of-line) 1119 (beginning-of-line)
1120 (looking-at regexp)) 1120 (looking-at regexp))
1121 (add-text-properties (match-beginning 0) (match-end 0) 1121 (add-text-properties (match-beginning 0) (match-end 0)
1122 (list 'start-open t 1122 (list 'chunked-encoding t
1123 'end-open t
1124 'chunked-encoding t
1125 'face 'cursor 1123 'face 'cursor
1126 'invisible t)) 1124 'invisible t))
1127 (setq url-http-chunked-length (string-to-number (buffer-substring 1125 (setq url-http-chunked-length (string-to-number (buffer-substring