Changeset 4161 for trunk/lisp/gnus/gnus-art.el
- Timestamp:
- 2006年09月09日 16時30分10秒 (2 years ago)
- Files:
-
- trunk/lisp/gnus/gnus-art.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/gnus/gnus-art.el
r4098 r4161 853 853 (defvar gnus-decode-header-function 'mail-decode-encoded-word-region 854 854 "Function used to decode headers.") 855 856 (defvar gnus-decode-address-function 'mail-decode-encoded-address-region 857 "Function used to decode addresses.") 855 858 856 859 (defvar gnus-article-dumbquotes-map … … 2378 2381 (error)) 2379 2382 gnus-newsgroup-ignored-charsets)) 2380 (inhibit-read-only t)) 2381 (save-restriction 2382 (article-narrow-to-head) 2383 (funcall gnus-decode-header-function (point-min) (point-max))))) 2383 (inhibit-read-only t) 2384 end start) 2385 (goto-char (point-min)) 2386 (when (search-forward "\n\n" nil 'move) 2387 (forward-line -1)) 2388 (setq end (point)) 2389 (while (not (bobp)) 2390 (while (progn 2391 (forward-line -1) 2392 (and (not (bobp)) 2393 (memq (char-after) '(?\t ? ))))) 2394 (setq start (point)) 2395 (if (looking-at "\ 2396 \\(?:Resent-\\)?\\(?:From\\|Cc\\|To\\|Bcc\\|\\(?:In-\\)?Reply-To\\|Sender\ 2397 \\|Mail-Followup-To\\|Mail-Copies-To\\|Approved\\):") 2398 (funcall gnus-decode-address-function start end) 2399 (funcall gnus-decode-header-function start end)) 2400 (goto-char (setq end start))))) 2384 2401 2385 2402 (defun article-decode-group-name () … … 3924 3941 (gnus-run-mode-hooks 'gnus-article-mode-hook)) 3925 3942 3943 ;; Internal variables. Are `gnus-button-regexp' and `gnus-button-last' used 3944 ;; at all? 3945 (defvar gnus-button-regexp nil) 3946 (defvar gnus-button-marker-list nil 3947 "Regexp matching any of the regexps from `gnus-button-alist'.") 3948 (defvar gnus-button-last nil 3949 "The value of `gnus-button-alist' when `gnus-button-regexp' was build.") 3950 3926 3951 (defun gnus-article-setup-buffer () 3927 3952 "Initialize the article buffer." … … 4325 4350 (none "(none)") 4326 4351 (description 4327 (or 4328 (mail-decode-encoded-word-string (or (mm-handle-description data) 4329 none)))) 4352 (mail-decode-encoded-word-string (or (mm-handle-description data) 4353 none))) 4330 4354 (filename 4331 4355 (or (mail-content-type-get (mm-handle-disposition data) 'filename) … … 6696 6720 (integer :tag "Regexp group"))))) 6697 6721 6698 (defvar gnus-button-regexp nil)6699 (defvar gnus-button-marker-list nil)6700 ;; Regexp matching any of the regexps from `gnus-button-alist'.6701 6702 (defvar gnus-button-last nil)6703 ;; The value of `gnus-button-alist' when `gnus-button-regexp' was build.6704 6705 6722 ;;; Commands: 6706 6723
