diff options
| author | Kenichi Handa | 2010-04-23 11:17:09 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-04-23 11:17:09 +0900 |
| commit | 5315723bbea1e7b65c3e5f3aed0ad716fa169d28 (patch) | |
| tree | a2f6cb12b284dfbfbd4f441a767bc0977b676084 | |
| parent | 81b14dd29dfa5db5b285bcbc3f72865004754200 (diff) | |
| parent | 770255e957e3881176087fa23c74c759ed56c1fa (diff) | |
| download | emacs-5315723bbea1e7b65c3e5f3aed0ad716fa169d28.tar.gz emacs-5315723bbea1e7b65c3e5f3aed0ad716fa169d28.zip | |
merge trunk
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/filecache.el | 10 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 1 |
4 files changed, 17 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 63bd341d779..8de72e751fd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-04-23 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * filecache.el (file-cache-add-directory-list) | ||
| 4 | (file-cache-add-directory-recursively): Fix typos in docstrings. | ||
| 5 | |||
| 1 | 2010-04-22 Kenichi Handa <handa@m17n.org> | 6 | 2010-04-22 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * language/indian.el (gurmukhi-composable-pattern): Fix typo. | 8 | * language/indian.el (gurmukhi-composable-pattern): Fix typo. |
diff --git a/lisp/filecache.el b/lisp/filecache.el index d8a284d7dce..b4b1e8bd954 100644 --- a/lisp/filecache.el +++ b/lisp/filecache.el | |||
| @@ -296,8 +296,8 @@ be added to the cache." | |||
| 296 | (defun file-cache-add-directory-list (directory-list &optional regexp) | 296 | (defun file-cache-add-directory-list (directory-list &optional regexp) |
| 297 | "Add DIRECTORY-LIST (a list of directory names) to the file cache. | 297 | "Add DIRECTORY-LIST (a list of directory names) to the file cache. |
| 298 | If the optional REGEXP argument is non-nil, only files which match it | 298 | If the optional REGEXP argument is non-nil, only files which match it |
| 299 | will be added to the cache. Note that the REGEXP is applied to the files | 299 | will be added to the cache. Note that the REGEXP is applied to the |
| 300 | in each directory, not to the directory list itself." | 300 | files in each directory, not to the directory list itself." |
| 301 | (interactive "XAdd files from directory list: ") | 301 | (interactive "XAdd files from directory list: ") |
| 302 | (mapcar | 302 | (mapcar |
| 303 | (lambda (dir) (file-cache-add-directory dir regexp)) | 303 | (lambda (dir) (file-cache-add-directory dir regexp)) |
| @@ -370,10 +370,10 @@ STRING is passed as an argument to the locate command." | |||
| 370 | ;;;###autoload | 370 | ;;;###autoload |
| 371 | (defun file-cache-add-directory-recursively (dir &optional regexp) | 371 | (defun file-cache-add-directory-recursively (dir &optional regexp) |
| 372 | "Adds DIR and any subdirectories to the file-cache. | 372 | "Adds DIR and any subdirectories to the file-cache. |
| 373 | This function does not use any external programs | 373 | This function does not use any external programs. |
| 374 | If the optional REGEXP argument is non-nil, only files which match it | 374 | If the optional REGEXP argument is non-nil, only files which match it |
| 375 | will be added to the cache. Note that the REGEXP is applied to the files | 375 | will be added to the cache. Note that the REGEXP is applied to the |
| 376 | in each directory, not to the directory list itself." | 376 | files in each directory, not to the directory list itself." |
| 377 | (interactive "DAdd directory: ") | 377 | (interactive "DAdd directory: ") |
| 378 | (require 'find-lisp) | 378 | (require 'find-lisp) |
| 379 | (mapcar | 379 | (mapcar |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 5e70b49a862..ab1210af5b5 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-04-22 Andreas Seltenreich <seltenreich@gmx.de> | ||
| 2 | |||
| 3 | * message.el (message-generate-headers): Record insertion of optional | ||
| 4 | headers as well. Otherwise the check to prevent repeated insertion of | ||
| 5 | optional headers is a no-op. | ||
| 6 | |||
| 1 | 2010-04-17 Teodor Zlatanov <tzz@lifelogs.com> | 7 | 2010-04-17 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 8 | ||
| 3 | * smime.el: Don't mention CVS. | 9 | * smime.el: Don't mention CVS. |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 27266f8aec1..2fe8a4d32ef 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -5880,6 +5880,7 @@ Headers already prepared in the buffer are not modified." | |||
| 5880 | (if formatter | 5880 | (if formatter |
| 5881 | (funcall formatter header value) | 5881 | (funcall formatter header value) |
| 5882 | (insert header-string ": " value)) | 5882 | (insert header-string ": " value)) |
| 5883 | (push header-string message-inserted-headers) | ||
| 5883 | (goto-char (message-fill-field)) | 5884 | (goto-char (message-fill-field)) |
| 5884 | ;; We check whether the value was ended by a | 5885 | ;; We check whether the value was ended by a |
| 5885 | ;; newline. If not, we insert one. | 5886 | ;; newline. If not, we insert one. |