]> git.eshelyaron.com Git - emacs.git/commitdiff
* mh-comp.el (mh-reply): Use standard default notation in prompts
authorBill Wohler <wohler@newt.com>
Wed, 4 Jan 2006 01:03:20 +0000 (01:03 +0000)
committerBill Wohler <wohler@newt.com>
Wed, 4 Jan 2006 01:03:20 +0000 (01:03 +0000)
(closes SF #1275933).

* mh-mime.el (mh-mime-save-parts): Ditto.

* mh-seq.el (mh-read-seq, mh-read-range): Ditto.

lisp/mh-e/ChangeLog
lisp/mh-e/mh-comp.el
lisp/mh-e/mh-mime.el
lisp/mh-e/mh-seq.el

index 4116fb4223c87bcfab63157b35db7e486ad431a7..e0da0950715288b17b62e498783779433910a586 100644 (file)
@@ -1,5 +1,12 @@
 2006-01-03  Bill Wohler  <wohler@newt.com>
 
+       * mh-comp.el (mh-reply): Use standard default notation in
+       prompts (closes SF #1275933).
+
+       * mh-mime.el (mh-mime-save-parts): Ditto.
+
+       * mh-seq.el (mh-read-seq, mh-read-range): Ditto.
+
        * mh-customize.el (mh-folder-msg-number): Snow is actually
        off-white on low color displays which turns to white when bold.
        This is unreadable on white backgrounds. Use snow with min-colors
index 63c35fd221fac139d0ce6af69bd109537f4cdf90..ddab3725058fc7ed4efa37019b92b7d25af72c36 100644 (file)
@@ -582,7 +582,7 @@ See also `mh-reply-show-message-flag',
                 (let ((minibuffer-help-form
                        "from => Sender only\nto => Sender and primary recipients\ncc or all => Sender and all recipients"))
                   (or mh-reply-default-reply-to
-                      (completing-read "Reply to whom: [from] "
+                      (completing-read "Reply to whom (default from): "
                                        '(("from") ("to") ("cc") ("all"))
                                        nil
                                        t)))
index 9edcf10b36dfd4b119356d66cf78f84e9afd270d..d8102fe6582c26700ad7742e5b3c3a9cea6b233e 100644 (file)
@@ -857,7 +857,7 @@ do the work."
                     (equal t mh-mime-save-parts-default-directory))
                 mh-mime-save-parts-directory)
            (read-file-name (format
-                            "Store in directory: [%s] "
+                            "Store in directory (default %s): "
                             mh-mime-save-parts-directory)
                            "" mh-mime-save-parts-directory t ""))
           ((stringp mh-mime-save-parts-default-directory)
index dffb831ad2b2fd99ad64a7be11d531ea69fe1da5..5dab59b270f3cbeb19d659512dee52d511306a5d 100644 (file)
@@ -420,9 +420,9 @@ Prompt with PROMPT, raise an error if the sequence is empty and
 the NOT-EMPTY flag is non-nil, and supply an optional DEFAULT
 sequence. A reply of '%' defaults to the first sequence
 containing the current message."
-  (let* ((input (completing-read (format "%s %s %s" prompt "sequence:"
+  (let* ((input (completing-read (format "%s sequence%s: " prompt
                                          (if default
-                                             (format "[%s] " default)
+                                             (format " (default %s)" default)
                                            ""))
                                  (mh-seq-names mh-seq-list)
                                  nil nil nil 'mh-sequence-history))
@@ -513,20 +513,22 @@ should be replaced with:
                     (car (mh-seq-containing-msg (mh-get-msg-num nil) t)))
         prompt (format "%s range" prompt))
   (let* ((folder (or folder mh-current-folder))
-         (default (cond ((or (eq default t) (stringp default)) default)
-                        ((symbolp default) (symbol-name default))))
          (guess (eq default t))
          (counts (and guess (mh-folder-size folder)))
          (unseen (and counts (> (cadr counts) 0)))
          (large (and counts mh-large-folder (> (car counts) mh-large-folder)))
-         (str (cond ((and guess large
-                          (setq default (format "last:%s" mh-large-folder)
-                                prompt (format "%s (folder has %s messages)"
-                                               prompt (car counts)))
-                          nil))
-                    ((and guess (not large) (setq default "all") nil))
-                    ((eq default nil) "")
-                    (t (format "[%s] " default))))
+         (default (cond ((and guess large) (format "last:%s" mh-large-folder))
+                        ((and guess (not large)) "all")
+                        ((stringp default) default)
+                        ((symbolp default) (symbol-name default))))
+         (prompt (cond ((and guess large default)
+                        (format "%s (folder has %s messages, default %s)"
+                                prompt (car counts) default))
+                       ((and guess large)
+                        (format "%s (folder has %s messages)"
+                                prompt (car counts)))
+                       (default
+                         (format "%s (default %s)" prompt default))))
          (minibuffer-local-completion-map mh-range-completion-map)
          (seq-list (if (eq folder mh-current-folder)
                        mh-seq-list
@@ -536,7 +538,7 @@ should be replaced with:
                   (mh-seq-names seq-list)))
          (input (cond ((and (not ask-flag) unseen) (symbol-name mh-unseen-seq))
                       ((and (not ask-flag) (not large)) "all")
-                      (t (completing-read (format "%s: %s" prompt str)
+                      (t (completing-read (format "%s: " prompt)
                                           'mh-range-completion-function nil nil
                                           nil 'mh-range-history default))))
          msg-list)