mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-10 08:52:40 -07:00
nnrss buffers don't have to be unibyte
* lisp/gnus/nnrss.el (nnrss-insert): The buffer doesn't have to be unibyte just to receive data, I think.
This commit is contained in:
parent
2ffc32f505
commit
49d0595f1f
1 changed files with 5 additions and 6 deletions
|
|
@ -582,12 +582,11 @@ which RSS 2.0 allows."
|
|||
"")
|
||||
|
||||
(defun nnrss-insert (url)
|
||||
(mm-with-unibyte-current-buffer
|
||||
(condition-case err
|
||||
(mm-url-insert url)
|
||||
(error (if (or debug-on-quit debug-on-error)
|
||||
(signal (car err) (cdr err))
|
||||
(message "nnrss: Failed to fetch %s" url))))))
|
||||
(condition-case err
|
||||
(mm-url-insert url)
|
||||
(error (if (or debug-on-quit debug-on-error)
|
||||
(signal (car err) (cdr err))
|
||||
(message "nnrss: Failed to fetch %s" url)))))
|
||||
|
||||
(defun nnrss-decode-entities-string (string)
|
||||
(if string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue