Changeset 4161 for trunk/lisp/gnus/gnus-sum.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/gnus/gnus-sum.el (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/gnus/gnus-sum.el
r4131 r4161 993 993 994 994 (defvar gnus-decode-encoded-word-function 'mail-decode-encoded-word-string 995 "Variable that says which function should be used to decode a string with encoded words.") 995 "Function used to decode a string with encoded words.") 996 997 (defvar gnus-decode-encoded-address-function 998 'mail-decode-encoded-address-string 999 "Function used to decode addresses with encoded words.") 996 1000 997 1001 (defcustom gnus-extra-headers '(To Newsgroups) … … 1002 1006 1003 1007 (defcustom gnus-ignored-from-addresses 1004 (and user-mail-address 1008 (and user-mail-address 1005 1009 (not (string= user-mail-address "")) 1006 1010 (regexp-quote user-mail-address)) … … 3437 3441 (inline 3438 3442 (gnus-summary-extract-address-component 3439 (funcall gnus-decode-encoded- word-function to)))))3443 (funcall gnus-decode-encoded-address-function to))))) 3440 3444 ((setq newsgroups (cdr (assq 'Newsgroups extra-headers))) 3441 3445 (concat "=> " newsgroups))))) … … 4183 4187 (condition-case () ; from 4184 4188 (gnus-remove-odd-characters 4185 (funcall gnus-decode-encoded- word-function4189 (funcall gnus-decode-encoded-address-function 4186 4190 (setq x (nnheader-nov-field)))) 4187 4191 (error x)) … … 5957 5961 (goto-char p) 5958 5962 (if (search-forward "\nfrom:" nil t) 5959 (funcall gnus-decode-encoded- word-function5963 (funcall gnus-decode-encoded-address-function 5960 5964 (nnheader-header-value)) 5961 5965 "(nobody)")) … … 8450 8454 (when (setq to-address (or (gnus-fetch-field "reply-to") 8451 8455 (gnus-fetch-field "from"))) 8452 (setq params (append 8453 (list (cons 'to-address 8454 (funcall gnus-decode-encoded-word-function 8455 to-address)))))) 8456 (setq params 8457 (append 8458 (list (cons 'to-address 8459 (funcall gnus-decode-encoded-address-function 8460 to-address)))))) 8456 8461 (setq dig (nnheader-set-temp-buffer " *gnus digest buffer*")) 8457 8462 (insert-buffer-substring gnus-original-article-buffer)
