comparison lisp/gnus/gnus-sum.el @ 80525:1e3a4955a638

Merge from gnus--rel--5.10 Revision: emacs@sv.gnu.org/emacs--rel--22--patch-257
author Miles Bader <miles@gnu.org>
date Thu, 24 Apr 2008 04:51:03 +0000
parents 99d3beccda6b
children 9110741da209
comparison
equal deleted inserted replaced
80524:5b7bb12a8a8f 80525:1e3a4955a638
2132 ["Set score" gnus-summary-set-score t] 2132 ["Set score" gnus-summary-set-score t]
2133 ["Switch current score file..." gnus-score-change-score-file t] 2133 ["Switch current score file..." gnus-score-change-score-file t]
2134 ["Set mark below..." gnus-score-set-mark-below t] 2134 ["Set mark below..." gnus-score-set-mark-below t]
2135 ["Set expunge below..." gnus-score-set-expunge-below t] 2135 ["Set expunge below..." gnus-score-set-expunge-below t]
2136 ["Edit current score file" gnus-score-edit-current-scores t] 2136 ["Edit current score file" gnus-score-edit-current-scores t]
2137 ["Edit score file" gnus-score-edit-file t] 2137 ["Edit score file..." gnus-score-edit-file t]
2138 ["Trace score" gnus-score-find-trace t] 2138 ["Trace score" gnus-score-find-trace t]
2139 ["Find words" gnus-score-find-favourite-words t] 2139 ["Find words" gnus-score-find-favourite-words t]
2140 ["Rescore buffer" gnus-summary-rescore t] 2140 ["Rescore buffer" gnus-summary-rescore t]
2141 ["Increase score..." gnus-summary-increase-score t] 2141 ["Increase score..." gnus-summary-increase-score t]
2142 ["Lower score..." gnus-summary-lower-score t])))) 2142 ["Lower score..." gnus-summary-lower-score t]))))
2406 ,@(if (featurep 'xemacs) '(t) 2406 ,@(if (featurep 'xemacs) '(t)
2407 '(:help "Post a uuencoded article"))] 2407 '(:help "Post a uuencoded article"))]
2408 ["Followup via news" gnus-summary-followup-to-mail t] 2408 ["Followup via news" gnus-summary-followup-to-mail t]
2409 ["Followup via news and yank" 2409 ["Followup via news and yank"
2410 gnus-summary-followup-to-mail-with-original t] 2410 gnus-summary-followup-to-mail-with-original t]
2411 ["Strip signature on reply"
2412 (lambda ()
2413 (interactive)
2414 (if (not (memq message-cite-function
2415 '(message-cite-original-without-signature
2416 message-cite-original)))
2417 ;; Stupid workaround for XEmacs not honoring :visible.
2418 (message "Can't toggle this value of `message-cite-function'")
2419 (setq message-cite-function
2420 (if (eq message-cite-function
2421 'message-cite-original-without-signature)
2422 'message-cite-original
2423 'message-cite-original-without-signature))))
2424 ;; XEmacs barfs on :visible.
2425 ,@(if (featurep 'xemacs) nil
2426 '(:visible (memq message-cite-function
2427 '(message-cite-original-without-signature
2428 message-cite-original))))
2429 :style toggle
2430 :selected (eq message-cite-function
2431 'message-cite-original-without-signature)
2432 ,@(if (featurep 'xemacs) nil
2433 '(:help "Strip signature from cited article when replying."))]
2411 ;;("Draft" 2434 ;;("Draft"
2412 ;;["Send" gnus-summary-send-draft t] 2435 ;;["Send" gnus-summary-send-draft t]
2413 ;;["Send bounced" gnus-resend-bounced-mail t]) 2436 ;;["Send bounced" gnus-resend-bounced-mail t])
2414 )) 2437 ))
2415 2438
7247 (gnus-summary-goto-subject article t))) 7270 (gnus-summary-goto-subject article t)))
7248 (gnus-summary-limit (append articles gnus-newsgroup-limit)) 7271 (gnus-summary-limit (append articles gnus-newsgroup-limit))
7249 (gnus-summary-position-point)) 7272 (gnus-summary-position-point))
7250 7273
7251 (defun gnus-summary-goto-subject (article &optional force silent) 7274 (defun gnus-summary-goto-subject (article &optional force silent)
7252 "Go the subject line of ARTICLE. 7275 "Go to the subject line of ARTICLE.
7253 If FORCE, also allow jumping to articles not currently shown." 7276 If FORCE, also allow jumping to articles not currently shown."
7254 (interactive "nArticle number: ") 7277 (interactive "nArticle number: ")
7255 (unless (numberp article) 7278 (unless (numberp article)
7256 (error "Article %s is not a number" article)) 7279 (error "Article %s is not a number" article))
7257 (let ((b (point)) 7280 (let ((b (point))