aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2019-02-14 04:08:44 +0300
committerDmitry Gutov2019-02-14 04:09:09 +0300
commit33dbe23bb8114d6a71ad267b0e172909dab7b387 (patch)
treed89cd4def1e509e217040c0583acae44d461d016
parenta48099ce7ff63cda416a870766fe61f5b8ac7c2c (diff)
downloademacs-33dbe23bb8114d6a71ad267b0e172909dab7b387.tar.gz
emacs-33dbe23bb8114d6a71ad267b0e172909dab7b387.zip
Rename project-query-replace to project-query-replace-regexp
* lisp/progmodes/project.el (project-query-replace): Rename to project-query-replace-regexp.
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ldefs-boot.el2
-rw-r--r--lisp/progmodes/project.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 75c8dc0b8e0..1d79b05bc93 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -386,7 +386,7 @@ The mode is automatically enabled in files that start with the
386'function' keyword. 386'function' keyword.
387 387
388** project.el 388** project.el
389*** New commands 'project-search' and 'project-query-replace'. 389*** New commands 'project-search' and 'project-query-replace-regexp'.
390 390
391** Etags 391** Etags
392 392
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el
index b913b1bb362..a6c7669c70c 100644
--- a/lisp/ldefs-boot.el
+++ b/lisp/ldefs-boot.el
@@ -26459,7 +26459,7 @@ To continue searching for next match, use command \\[fileloop-continue].
26459 26459
26460\(fn REGEXP)" t nil) 26460\(fn REGEXP)" t nil)
26461 26461
26462(autoload 'project-query-replace "project" "\ 26462(autoload 'project-query-replace-regexp "project" "\
26463Search for REGEXP in all the files of the project. 26463Search for REGEXP in all the files of the project.
26464Stops when a match is found. 26464Stops when a match is found.
26465To continue searching for next match, use command \\[fileloop-continue]. 26465To continue searching for next match, use command \\[fileloop-continue].
diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el
index fbf761c60c9..533e27be7ef 100644
--- a/lisp/progmodes/project.el
+++ b/lisp/progmodes/project.el
@@ -532,7 +532,7 @@ To continue searching for next match, use command \\[fileloop-continue]."
532 (fileloop-continue)) 532 (fileloop-continue))
533 533
534;;;###autoload 534;;;###autoload
535(defun project-query-replace (from to) 535(defun project-query-replace-regexp (from to)
536 "Search for REGEXP in all the files of the project. 536 "Search for REGEXP in all the files of the project.
537Stops when a match is found. 537Stops when a match is found.
538To continue searching for next match, use command \\[fileloop-continue]." 538To continue searching for next match, use command \\[fileloop-continue]."