]> git.eshelyaron.com Git - emacs.git/commitdiff
Use format-prompt in read-string calls (that have default values)
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 6 Sep 2020 20:59:48 +0000 (22:59 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 6 Sep 2020 21:19:43 +0000 (23:19 +0200)
* lisp/vc/vc-annotate.el (vc-annotate):
* lisp/vc/log-edit.el (log-edit-comment-search-backward)
(log-edit-comment-search-forward):
* lisp/textmodes/rst.el (rst-insert-list-new-item):
* lisp/server.el (server-force-delete):
* lisp/mpc.el (mpc):
* lisp/frame.el (set-frame-name):
* lisp/emulation/cua-rect.el (cua-sequence-rectangle):
* lisp/cedet/semantic/symref/list.el (semantic-symref-regexp):
* lisp/calendar/todo-mode.el (todo-read-time): Use `format-prompt'
in `read-string' calls that have defaults.

lisp/calendar/todo-mode.el
lisp/cedet/semantic/symref/list.el
lisp/emulation/cua-rect.el
lisp/frame.el
lisp/mpc.el
lisp/server.el
lisp/textmodes/rst.el
lisp/vc/log-edit.el
lisp/vc/vc-annotate.el

index 02a7316f26369f6bfa4f68dae5621dbfb0258313..0da87a7e88ef8967b95fbc5a9f5f52b944d8c79b 100644 (file)
@@ -6110,11 +6110,12 @@ Valid time strings are those matching `diary-time-regexp'.
 Typing `<return>' at the prompt returns the current time, if the
 user option `todo-always-add-time-string' is non-nil, otherwise
 the empty string (i.e., no time string)."
-  (let (valid answer)
+  (let ((default (when todo-always-add-time-string
+                  (format-time-string "%H:%M")))
+        valid answer)
     (while (not valid)
-      (setq answer (read-string "Enter a clock time: " nil nil
-                               (when todo-always-add-time-string
-                                 (format-time-string "%H:%M"))))
+      (setq answer (read-string (format-prompt "Enter a clock time" default)
+                                nil nil default))
       (when (or (string= "" answer)
                (string-match diary-time-regexp answer))
        (setq valid t)))
index 23f5f89274f45778f11acc13aae007eeb21baeea..fc7f9dbcb64bb35eaf0c109b187ba23df5300f7f 100644 (file)
@@ -85,10 +85,12 @@ current project to find references to the input SYM.  The
 references are the organized by file and the name of the function
 they are used in.
 Display the references in `semantic-symref-results-mode'."
-  (interactive (list (let ((tag (semantic-current-tag)))
-                       (read-string " Symrefs for: " nil nil
-                                    (when tag
-                                      (regexp-quote (semantic-tag-name tag)))))))
+  (interactive (list (let* ((tag (semantic-current-tag))
+                            (default (when tag
+                                       (regexp-quote
+                                        (semantic-tag-name tag)))))
+                       (read-string (format-prompt " Symrefs for" default)
+                                    nil nil default))))
   ;; FIXME: Shouldn't the input be in Emacs regexp format, for
   ;; consistency? Converting it to extended is not hard.
   (semantic-fetch-tags)
index 663995a0a11072432b26018acd5b4a3255b7ce67..d2c6dd06b6cc86b4c03968635e33a87c1d30a9bd 100644 (file)
@@ -1150,9 +1150,9 @@ The numbers are formatted according to the FORMAT string."
    (list (if current-prefix-arg
              (prefix-numeric-value current-prefix-arg)
            (string-to-number
-            (read-string "Start value: (0) " nil nil "0")))
+            (read-string (format-prompt "Start value" 0) nil nil "0")))
          (string-to-number
-          (read-string "Increment: (1) " nil nil "1"))
+          (read-string (format-prompt "Increment" 1) nil nil "1"))
          (read-string (concat "Format: (" cua--rectangle-seq-format ") "))))
   (if (= (length format) 0)
       (setq format cua--rectangle-seq-format)
index 05da1ea7b8be98d0b1011291e7bfd8d6e96e384f..7751ae1303f6cd36c23913f493ea06aad80934e5 100644 (file)
@@ -1581,8 +1581,9 @@ When called interactively, prompt for the name of the frame.
 On text terminals, the frame name is displayed on the mode line.
 On graphical displays, it is displayed on the frame's title bar."
   (interactive
-   (list (read-string "Frame name: " nil nil
-                      (cdr (assq 'name (frame-parameters))))))
+   (let ((default (cdr (assq 'name (frame-parameters)))))
+     (list (read-string (format-prompt "Frame name" default) nil nil
+                        default))))
   (modify-frame-parameters (selected-frame)
                           (list (cons 'name name))))
 
index 47fe4dea7fa37bd0da7662139129b3618ee16201..d22b7ab45069bdc3df68996fd2b38bdd2bdf29f4 100644 (file)
@@ -2750,7 +2750,9 @@ If stopped, start playback."
      (if current-prefix-arg
          ;; FIXME: We should provide some completion here, especially for the
          ;; case where the user specifies a local socket/file name.
-         (setq mpc-host (read-string "MPD host and port: " nil nil mpc-host)))
+         (setq mpc-host (read-string
+                         (format-prompt "MPD host and port" mpc-host)
+                         nil nil mpc-host)))
      nil))
   (let* ((song-buf (mpc-songs-buf))
          (song-win (get-buffer-window song-buf 0)))
index 9934e1c1be996829bdadfff42bfee2f4a95f01b6..436a6ca0c70f5048cc85accbcd51a85c53dee999 100644 (file)
@@ -728,7 +728,8 @@ If server is running, it is first stopped.
 NAME defaults to `server-name'.  With argument, ask for NAME."
   (interactive
    (list (if current-prefix-arg
-            (read-string "Server name: " nil nil server-name))))
+            (read-string (format-prompt "Server name" server-name)
+                          nil nil server-name))))
   (when server-mode (with-temp-message nil (server-mode -1)))
   (let ((file (expand-file-name (or name server-name)
                                (if server-use-tcp
index db17a90a716d30c4cc424f5da971eaa1da22ec88..f2fcd62c8712c5a3ec7a285a81b07e50610f565b 100644 (file)
@@ -2371,21 +2371,23 @@ also arranged by `rst-insert-list-new-tag'."
          (save-match-data
            (cond
             ((equal cnt "a")
-             (let ((itemno (read-string "Give starting value [a]: "
-                                        nil nil "a")))
+             (let ((itemno (read-string
+                             (format-prompt "Give starting value" "a")
+                            nil nil "a")))
                (downcase (substring itemno 0 1))))
             ((equal cnt "A")
-             (let ((itemno (read-string "Give starting value [A]: "
-                                        nil nil "A")))
+             (let ((itemno (read-string
+                             (format-prompt "Give starting value" "A")
+                            nil nil "A")))
                (upcase (substring itemno 0 1))))
             ((equal cnt "I")
-             (let ((itemno (read-number "Give starting value [1]: " 1)))
+             (let ((itemno (read-number "Give starting value: " 1)))
                (rst-arabic-to-roman itemno)))
             ((equal cnt "i")
-             (let ((itemno (read-number "Give starting value [1]: " 1)))
+             (let ((itemno (read-number "Give starting value: " 1)))
                (downcase (rst-arabic-to-roman itemno))))
             ((equal cnt "1")
-             (let ((itemno (read-number "Give starting value [1]: " 1)))
+             (let ((itemno (read-number "Give starting value: " 1)))
                (number-to-string itemno)))))))
     (if no
        (setq itemstyle (replace-match no t t itemstyle)))
index cd19b4e065bdb5e94c49688b7bf5b6af1225b8c0..1c69bdf4135bf5f9418f5ae32d80adf987fc7593 100644 (file)
@@ -244,7 +244,9 @@ If the optional argument STRIDE is present, that is a step-width to use
 when going through the comment ring."
   ;; Why substring rather than regexp ?   -sm
   (interactive
-   (list (read-string "Comment substring: " nil nil log-edit-last-comment-match)))
+   (list (read-string (format-prompt "Comment substring"
+                                     log-edit-last-comment-match)
+                      nil nil log-edit-last-comment-match)))
   (unless stride (setq stride 1))
   (if (string= str "")
       (setq str log-edit-last-comment-match)
@@ -261,7 +263,9 @@ when going through the comment ring."
 (defun log-edit-comment-search-forward (str)
   "Search forwards through comment history for a substring match of STR."
   (interactive
-   (list (read-string "Comment substring: " nil nil log-edit-last-comment-match)))
+   (list (read-string (format-prompt "Comment substring"
+                                     log-edit-last-comment-match)
+                      nil nil log-edit-last-comment-match)))
   (log-edit-comment-search-backward str -1))
 
 (defun log-edit-comment-to-change-log (&optional whoami file-name)
index 18bcc6c2f10805cecb3c13821c7d8c75f28d2805..5198bccf846c4ee513efbc53aa3c45aa9e3557ce 100644 (file)
@@ -408,7 +408,7 @@ should be applied to the background or to the foreground."
           (if (null current-prefix-arg)
               vc-annotate-display-mode
             (float (string-to-number
-                    (read-string "Annotate span days (default 20): "
+                    (read-string (format-prompt "Annotate span days" 20)
                                  nil nil "20")))))))
   (vc-ensure-vc-buffer)
   (setq vc-annotate-display-mode display-mode) ;Not sure why.  --Stef