diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2019-02-14 04:08:44 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2019-02-14 04:09:09 +0300 |
commit | 33dbe23bb8114d6a71ad267b0e172909dab7b387 (patch) | |
tree | d89cd4def1e509e217040c0583acae44d461d016 /lisp | |
parent | a48099ce7ff63cda416a870766fe61f5b8ac7c2c (diff) | |
download | emacs-33dbe23bb8114d6a71ad267b0e172909dab7b387.tar.gz |
Rename project-query-replace to project-query-replace-regexp
* lisp/progmodes/project.el (project-query-replace): Rename to
project-query-replace-regexp.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ldefs-boot.el | 2 | ||||
-rw-r--r-- | lisp/progmodes/project.el | 2 |
2 files changed, 2 insertions, 2 deletions
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]. \(fn REGEXP)" t nil) -(autoload 'project-query-replace "project" "\ +(autoload 'project-query-replace-regexp "project" "\ Search for REGEXP in all the files of the project. Stops when a match is found. To 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]." (fileloop-continue)) ;;;###autoload -(defun project-query-replace (from to) +(defun project-query-replace-regexp (from to) "Search for REGEXP in all the files of the project. Stops when a match is found. To continue searching for next match, use command \\[fileloop-continue]." |