]> git.eshelyaron.com Git - emacs.git/commitdiff
(read-regexp): Rename arg `default' to `default-value'. Doc fix.
authorJuri Linkov <juri@jurta.org>
Sun, 19 Oct 2008 22:04:59 +0000 (22:04 +0000)
committerJuri Linkov <juri@jurta.org>
Sun, 19 Oct 2008 22:04:59 +0000 (22:04 +0000)
lisp/ChangeLog
lisp/replace.el

index 2ae4b90e7b1ea4e0bf6621cc09e8b8614500ca68..c1614c1db2a59ae1105a87cdd64fb73fe9162b4c 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-19  Juri Linkov  <juri@jurta.org>
+
+       * replace.el (read-regexp): Rename arg `default' to `default-value'.
+       Doc fix.
+
 2008-10-19  Eli Zaretskii  <eliz@gnu.org>
 
        * subr.el (apply-partially): Moved here from minibuffer.el.  Doc fix.
index 5efbe417b0460b8b15c15310619b0fb7c2b370f4..c2256ab5f5403907bd21811a8407825041540fc7 100644 (file)
@@ -522,13 +522,14 @@ which will run faster and will not set the mark or print anything."
 Maximum length of the history list is determined by the value
 of `history-length', which see.")
 
-(defun read-regexp (prompt &optional default)
+(defun read-regexp (prompt &optional default-value)
   "Read regexp as a string using the regexp history and some useful defaults.
 Prompt for a regular expression with PROMPT (without a colon and
-space) in the minibuffer.  The optional string argument DEFAULT
-provides the basic default value, that is returned on typing RET.
-Additional defaults are the string at point, the last isearch regexp,
-the last isearch string, and the last replacement regexp."
+space) in the minibuffer.  The optional argument DEFAULT-VALUE
+provides the value to display in the minibuffer prompt that is
+returned if the user just types RET.
+Values available via M-n are the string at point, the last isearch
+regexp, the last isearch string, and the last replacement regexp."
   (let* ((defaults
           (list (regexp-quote
                  (or (funcall (or find-tag-default-function
@@ -544,12 +545,13 @@ the last isearch string, and the last replacement regexp."
         (history-add-new-input nil)
         (input
          (read-from-minibuffer
-          (if default
-              (format "%s (default %s): " prompt (query-replace-descr default))
+          (if default-value
+              (format "%s (default %s): " prompt
+                      (query-replace-descr default-value))
             (format "%s: " prompt))
           nil nil nil 'regexp-history defaults t)))
     (if (equal input "")
-       default
+       default-value
       (prog1 input
        (add-to-history 'regexp-history input)))))