diff options
| author | Stefan Kangas | 2020-11-20 16:43:57 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2020-11-20 16:43:57 +0100 |
| commit | ea218f424ae3a016b439f2e2d2abe0a167bac78e (patch) | |
| tree | e88b0303dfa54ae1f68e70b5b8c965a3c5835f28 /lisp/url | |
| parent | 8c801138acfb5b1068a78b1a10e055d2e7952c9e (diff) | |
| download | emacs-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.
Diffstat (limited to 'lisp/url')
| -rw-r--r-- | lisp/url/url-http.el | 4 |
1 files changed, 1 insertions, 3 deletions
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 |