]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/replace.el (perform-replace): Document `replacements'.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Aug 2015 15:43:10 +0000 (11:43 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 11 Aug 2015 15:43:10 +0000 (11:43 -0400)
(perform-replace): Move the description of the format of `replacements' from
the body's comment to the docstring.

lisp/replace.el

index a541c5530c490c3f5b72715500c6587c3ef5734c..aa1da08eca37f46ecb5b800c515e7d848d527da5 100644 (file)
@@ -2080,7 +2080,13 @@ see the documentation of `replace-match' to find out how to simulate
 `case-replace'.
 
 This function returns nil if and only if there were no matches to
-make, or the user didn't cancel the call."
+make, or the user didn't cancel the call.
+
+REPLACEMENTS is either a string, a list of strings, or a cons cell
+containing a function and its first argument.  The function is
+called to generate each replacement like this:
+  (funcall (car replacements) (cdr replacements) replace-count)
+It must return a string."
   (or map (setq map query-replace-map))
   (and query-flag minibuffer-auto-raise
        (raise-frame (window-frame (minibuffer-window))))
@@ -2136,11 +2142,6 @@ make, or the user didn't cancel the call."
     (when (eq (lookup-key map (vector last-input-event)) 'automatic-all)
       (setq query-flag nil multi-buffer t))
 
-    ;; REPLACEMENTS is either a string, a list of strings, or a cons cell
-    ;; containing a function and its first argument.  The function is
-    ;; called to generate each replacement like this:
-    ;;   (funcall (car replacements) (cdr replacements) replace-count)
-    ;; It must return a string.
     (cond
      ((stringp replacements)
       (setq next-replacement replacements