Changeset 3863 for trunk/lisp/gnus/gnus-art.el
- Timestamp:
- 2005年09月10日 10時16分00秒 (3 years ago)
- Files:
-
- trunk/lisp/gnus/gnus-art.el (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/gnus/gnus-art.el
r3828 r3863 30 30 (eval-when-compile 31 31 (require 'cl) 32 (defvar tool-bar-map)) 32 (defvar tool-bar-map) 33 (defvar w3m-minor-mode-map)) 33 34 34 35 (require 'gnus) … … 236 237 no signature in the buffer. If it is a string, it will be used as a 237 238 regexp. If it matches, the text in question is not a signature." 238 :type '(choice (integer :value 200) 239 :type '(choice (const nil) 240 (integer :value 200) 239 241 (number :value 4.0) 240 242 (function :value fun) … … 869 871 on parts -- for instance, adding Vcard info to a database." 870 872 :group 'gnus-article-mime 871 :type 'function) 873 :type '(choice (const nil) 874 function)) 872 875 873 876 (defcustom gnus-mime-multipart-functions nil … … 4860 4863 (setq beg (point))) 4861 4864 (gnus-article-insert-newline) 4862 (mm-insert-inline handle (mm-get-part handle)) 4865 (mm-insert-inline handle 4866 (let ((charset 4867 (mail-content-type-get 4868 (mm-handle-type handle) 'charset))) 4869 (if (eq charset 'gnus-decoded) 4870 (mm-get-part handle) 4871 (mm-decode-string (mm-get-part handle) 4872 charset)))) 4863 4873 (goto-char (point-max)))) 4864 4874 ;; Do highlighting.
