]> code.delx.au - gnu-emacs-elpa/commitdiff
el-search: add autoload cookies
authorMichael Heerdegen <michael_heerdegen@web.de>
Tue, 15 Sep 2015 10:10:20 +0000 (12:10 +0200)
committerMichael Heerdegen <michael_heerdegen@web.de>
Tue, 22 Sep 2015 19:18:31 +0000 (21:18 +0200)
packages/el-search/el-search.el

index a4a93430b24c072845807fc7d3ad5030dfb9cc5e..e7453dfb0f5c6bf69185d276f8ddc7a832f707bd 100644 (file)
@@ -400,6 +400,7 @@ return nil (no error)."
 (defvar el-search-success nil)
 (defvar el-search-current-pattern nil)
 
+;;;###autoload
 (defun el-search-pattern (pattern)
   "Do incremental elisp search forward."
   (interactive (list (if (and (eq this-command last-command)
@@ -499,6 +500,7 @@ return nil (no error)."
             (insert to)
             (el-search--create-read-map 1)))))
 
+;;;###autoload
 (defun el-search-query-replace (from to &optional mapping)
   "Replace some occurrences of FROM pattern with evaluated TO."
   (interactive (el-search-query-replace-read-args))
@@ -514,6 +516,7 @@ return nil (no error)."
       (goto-char other-end))
     input))
 
+;;;###autoload
 (defun el-search-search-from-isearch ()
   (interactive)
   (el-search-pattern
@@ -521,6 +524,7 @@ return nil (no error)."
     "Find pcase pattern: " nil (concat "'" (el-search--take-over-from-isearch)) t))
   (setq this-command 'el-search-pattern))
 
+;;;###autoload
 (defun el-search-replace-from-isearch ()
   (interactive)
   (let ((this-command 'el-search-query-replace))