diff options
| author | Glenn Morris | 2011-02-19 11:40:59 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-02-19 11:40:59 -0800 |
| commit | 67ab0163d67fbfeb41c37c8a259f27eeef965520 (patch) | |
| tree | 0baa678a486744cc30719841ab745fe690f5bc9d /lisp/gnus | |
| parent | d6e96966e86d8eadec446788d19144bd69b1e798 (diff) | |
| parent | 27ac6e7908c1d7b503ac5dca42a34ab9068d0864 (diff) | |
| download | emacs-67ab0163d67fbfeb41c37c8a259f27eeef965520.tar.gz emacs-67ab0163d67fbfeb41c37c8a259f27eeef965520.zip | |
Merge from emacs-23; up to 2010-06-01T01:49:15Z!monnier@iro.umontreal.ca
Diffstat (limited to 'lisp/gnus')
| -rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/gnus/gnus.el | 2 | ||||
| -rw-r--r-- | lisp/gnus/nnfolder.el | 4 |
3 files changed, 12 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 576cec2ca82..52c72ec8606 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2011-02-19 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * gnus.el (gnus-meta): Doc fix. | ||
| 4 | |||
| 5 | 2011-02-19 Chong Yidong <cyd@stupidchicken.com> | ||
| 6 | |||
| 7 | * nnfolder.el (nnfolder-save-buffer): Don't let-bind copyright-update, | ||
| 8 | in case it's not yet loaded. | ||
| 9 | |||
| 1 | 2011-02-19 Lars Ingebrigtsen <larsi@gnus.org> | 10 | 2011-02-19 Lars Ingebrigtsen <larsi@gnus.org> |
| 2 | 11 | ||
| 3 | * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK" | 12 | * nnimap.el (nnimap-parse-copied-articles): Allow for "<foo> OK" |
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 4cbdee53ab4..42acb65ff9f 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el | |||
| @@ -275,7 +275,7 @@ | |||
| 275 | 275 | ||
| 276 | (defgroup gnus-meta nil | 276 | (defgroup gnus-meta nil |
| 277 | "Meta variables controlling major portions of Gnus. | 277 | "Meta variables controlling major portions of Gnus. |
| 278 | In general, modifying these variables does not take affect until Gnus | 278 | In general, modifying these variables does not take effect until Gnus |
| 279 | is restarted, and sometimes reloaded." | 279 | is restarted, and sometimes reloaded." |
| 280 | :group 'gnus) | 280 | :group 'gnus) |
| 281 | 281 | ||
diff --git a/lisp/gnus/nnfolder.el b/lisp/gnus/nnfolder.el index dd11ff71dd3..c6b4c0825e3 100644 --- a/lisp/gnus/nnfolder.el +++ b/lisp/gnus/nnfolder.el | |||
| @@ -1090,8 +1090,8 @@ This command does not work if you use short group names." | |||
| 1090 | (gnus-make-directory (file-name-directory (buffer-file-name))) | 1090 | (gnus-make-directory (file-name-directory (buffer-file-name))) |
| 1091 | (let ((coding-system-for-write | 1091 | (let ((coding-system-for-write |
| 1092 | (or nnfolder-file-coding-system-for-write | 1092 | (or nnfolder-file-coding-system-for-write |
| 1093 | nnfolder-file-coding-system)) | 1093 | nnfolder-file-coding-system))) |
| 1094 | (copyright-update nil)) | 1094 | (set (make-local-variable 'copyright-update) nil) |
| 1095 | (save-buffer))) | 1095 | (save-buffer))) |
| 1096 | (unless (or gnus-nov-is-evil nnfolder-nov-is-evil) | 1096 | (unless (or gnus-nov-is-evil nnfolder-nov-is-evil) |
| 1097 | (nnfolder-save-nov))) | 1097 | (nnfolder-save-nov))) |