comparison lisp/gnus/gnus-sum.el @ 65682:c16795de963a

2005-09-24 Emilio C. Lopes <eclig@gmx.net> * smime.el (smime-sign-buffer, smime-decrypt-buffer): * mm-view.el (mm-view-pkcs7-decrypt): * gnus-sum.el (gnus-summary-limit-to-extra) (gnus-summary-respool-article, gnus-read-move-group-name): * gnus-score.el (gnus-summary-increase-score): * gnus-util.el (gnus-completing-read-with-default): * gnus-art.el (gnus-read-save-file-name) (gnus-summary-save-in-rmail, gnus-summary-save-in-mail) (gnus-summary-save-in-file, gnus-summary-save-body-in-file): * message.el (message-check-news-header-syntax): Follow convention for reading with the minibuffer.
author Romain Francoise <romain@orebokech.com>
date Sat, 24 Sep 2005 13:46:20 +0000
parents e441782b5360
children eaa19e98cd04 ee12d75eb214
comparison
equal deleted inserted replaced
65681:4312387e37c8 65682:c16795de963a
7694 (let ((header 7694 (let ((header
7695 (intern 7695 (intern
7696 (gnus-completing-read-with-default 7696 (gnus-completing-read-with-default
7697 (symbol-name (car gnus-extra-headers)) 7697 (symbol-name (car gnus-extra-headers))
7698 (if current-prefix-arg 7698 (if current-prefix-arg
7699 "Exclude extra header:" 7699 "Exclude extra header"
7700 "Limit extra header:") 7700 "Limit extra header")
7701 (mapcar (lambda (x) 7701 (mapcar (lambda (x)
7702 (cons (symbol-name x) x)) 7702 (cons (symbol-name x) x))
7703 gnus-extra-headers) 7703 gnus-extra-headers)
7704 nil 7704 nil
7705 t)))) 7705 t))))
9216 (symbol-name (or gnus-summary-respool-default-method 9216 (symbol-name (or gnus-summary-respool-default-method
9217 (car (gnus-find-method-for-group 9217 (car (gnus-find-method-for-group
9218 gnus-newsgroup-name))))) 9218 gnus-newsgroup-name)))))
9219 (method 9219 (method
9220 (gnus-completing-read-with-default 9220 (gnus-completing-read-with-default
9221 methname "What backend do you want to use when respooling?" 9221 methname "Backend to use when respooling"
9222 methods nil t nil 'gnus-mail-method-history)) 9222 methods nil t nil 'gnus-mail-method-history))
9223 ms) 9223 ms)
9224 (cond 9224 (cond
9225 ((zerop (length (setq ms (gnus-servers-using-backend 9225 ((zerop (length (setq ms (gnus-servers-using-backend
9226 (intern method))))) 9226 (intern method)))))
11042 (defun gnus-read-move-group-name (prompt default articles prefix) 11042 (defun gnus-read-move-group-name (prompt default articles prefix)
11043 "Read a group name." 11043 "Read a group name."
11044 (let* ((split-name (gnus-get-split-value gnus-move-split-methods)) 11044 (let* ((split-name (gnus-get-split-value gnus-move-split-methods))
11045 (minibuffer-confirm-incomplete nil) ; XEmacs 11045 (minibuffer-confirm-incomplete nil) ; XEmacs
11046 (prom 11046 (prom
11047 (format "%s %s to:" 11047 (format "%s %s to"
11048 prompt 11048 prompt
11049 (if (> (length articles) 1) 11049 (if (> (length articles) 1)
11050 (format "these %d articles" (length articles)) 11050 (format "these %d articles" (length articles))
11051 "this article"))) 11051 "this article")))
11052 (to-newsgroup 11052 (to-newsgroup