diff options
| author | Glenn Morris | 2019-04-17 09:32:39 -0700 |
|---|---|---|
| committer | Glenn Morris | 2019-04-17 09:32:39 -0700 |
| commit | 632f489f7da21d682d2b292cf3b3079145ea83ca (patch) | |
| tree | e3052c6f308a0117596d32d12278791a9065fbae /lisp | |
| parent | 63a190a640f620f49b42e70e9e68f88e61c158b3 (diff) | |
| parent | 266c62290f5a0843555d2a18878a58395a6fd05f (diff) | |
| download | emacs-632f489f7da21d682d2b292cf3b3079145ea83ca.tar.gz emacs-632f489f7da21d682d2b292cf3b3079145ea83ca.zip | |
Merge from origin/emacs-26
266c622 Downcase charset
92f3459 Update for Emacs-26
beb4eac * doc/lispref/display.texi (Showing Images): Fix a typo. (Bu...
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/gnus-icalendar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-icalendar.el b/lisp/gnus/gnus-icalendar.el index 28020a1fd0b..53a20b90ebd 100644 --- a/lisp/gnus/gnus-icalendar.el +++ b/lisp/gnus/gnus-icalendar.el | |||
| @@ -756,7 +756,7 @@ These will be used to retrieve the RSVP information from ical events." | |||
| 756 | `(let ((,charset (cdr (assoc 'charset (mm-handle-type ,handle))))) | 756 | `(let ((,charset (cdr (assoc 'charset (mm-handle-type ,handle))))) |
| 757 | (with-temp-buffer | 757 | (with-temp-buffer |
| 758 | (mm-insert-part ,handle) | 758 | (mm-insert-part ,handle) |
| 759 | (when (string= ,charset "utf-8") | 759 | (when (string= (downcase ,charset) "utf-8") |
| 760 | (decode-coding-region (point-min) (point-max) 'utf-8)) | 760 | (decode-coding-region (point-min) (point-max) 'utf-8)) |
| 761 | ,@body)))) | 761 | ,@body)))) |
| 762 | 762 | ||