diff options
| author | Katsumi Yamaoka | 2010-05-10 12:07:40 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-05-10 12:07:40 +0000 |
| commit | 1fdf5102be10625fece506324e57af3b735f67f0 (patch) | |
| tree | ed2fe3a8e10ce60acda0f9babf628e7c4099d219 | |
| parent | 72e841ce72dda0d21f16a04951bee8e1e1d71fae (diff) | |
| download | emacs-1fdf5102be10625fece506324e57af3b735f67f0.tar.gz emacs-1fdf5102be10625fece506324e57af3b735f67f0.zip | |
Synch with Gnus trunk.
2010-05-10 Katsumi Yamaoka <yamaoka@jpl.org>
* mm-util.el (mm-emacs-mule): Remove.
2010-05-10 Andreas Seltenreich <seltenreich@gmx.de>
* gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist
buffer-local as it's incompatible with Stefan Monnier's 2010-05-03
change.
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 1 | ||||
| -rw-r--r-- | lisp/gnus/mm-util.el | 6 |
3 files changed, 10 insertions, 7 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index b1a687f8aff..4460e9b6d0b 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,5 +1,15 @@ | |||
| 1 | 2010-05-10 Katsumi Yamaoka <yamaoka@jpl.org> | 1 | 2010-05-10 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 2 | ||
| 3 | * mm-util.el (mm-emacs-mule): Remove. | ||
| 4 | |||
| 5 | 2010-05-10 Andreas Seltenreich <seltenreich@gmx.de> | ||
| 6 | |||
| 7 | * gnus-sum.el (gnus-summary-mode): Don't make minor-mode-alist | ||
| 8 | buffer-local as it's incompatible with Stefan Monnier's 2010-05-03 | ||
| 9 | change. | ||
| 10 | |||
| 11 | 2010-05-10 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 12 | |||
| 3 | * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to | 13 | * mm-util.el (mm-with-unibyte-current-buffer): Redefine it so as not to |
| 4 | bind the default value of enable-multibyte-characters to nil. | 14 | bind the default value of enable-multibyte-characters to nil. |
| 5 | 15 | ||
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 480c546ca6e..c142e7d6571 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -3056,7 +3056,6 @@ The following commands are available: | |||
| 3056 | (gnus-simplify-mode-line) | 3056 | (gnus-simplify-mode-line) |
| 3057 | (setq major-mode 'gnus-summary-mode) | 3057 | (setq major-mode 'gnus-summary-mode) |
| 3058 | (setq mode-name "Summary") | 3058 | (setq mode-name "Summary") |
| 3059 | (make-local-variable 'minor-mode-alist) | ||
| 3060 | (use-local-map gnus-summary-mode-map) | 3059 | (use-local-map gnus-summary-mode-map) |
| 3061 | (buffer-disable-undo) | 3060 | (buffer-disable-undo) |
| 3062 | (setq buffer-read-only t ;Disable modification | 3061 | (setq buffer-read-only t ;Disable modification |
diff --git a/lisp/gnus/mm-util.el b/lisp/gnus/mm-util.el index fe7fd78afa2..f657000205e 100644 --- a/lisp/gnus/mm-util.el +++ b/lisp/gnus/mm-util.el | |||
| @@ -902,12 +902,6 @@ mail with multiple parts is preferred to sending a Unicode one.") | |||
| 902 | out))) | 902 | out))) |
| 903 | 903 | ||
| 904 | (eval-and-compile | 904 | (eval-and-compile |
| 905 | (defvar mm-emacs-mule (and (not (featurep 'xemacs)) | ||
| 906 | (boundp 'enable-multibyte-characters) | ||
| 907 | (default-value 'enable-multibyte-characters) | ||
| 908 | (fboundp 'set-buffer-multibyte)) | ||
| 909 | "True in Emacs with Mule.") | ||
| 910 | |||
| 911 | (if (featurep 'xemacs) | 905 | (if (featurep 'xemacs) |
| 912 | (defalias 'mm-enable-multibyte 'ignore) | 906 | (defalias 'mm-enable-multibyte 'ignore) |
| 913 | (defun mm-enable-multibyte () | 907 | (defun mm-enable-multibyte () |