]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the arguments in tags--compat-initialize
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 4 Oct 2022 12:31:24 +0000 (14:31 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 4 Oct 2022 12:32:11 +0000 (14:32 +0200)
* lisp/progmodes/etags.el (tags--compat-initialize): Fix argument
order -- swap the last two arguments (bug#58272).

lisp/progmodes/etags.el

index db2c8efbd403b3c3ab59679dd99119f03f736141..85c5992998ab1085c2cebd7725d541efb265329d 100644 (file)
@@ -1784,10 +1784,10 @@ Bind `case-fold-search' during the evaluation, depending on the value of
 (defun tags--compat-initialize (initialize)
   (fileloop-initialize
    (tags--compat-files initialize)
+   (lambda () (tags-loop-eval tags-loop-scan))
    (if tags-loop-operate
        (lambda () (tags-loop-eval tags-loop-operate))
-     (lambda () (message "Scanning file %s...found" buffer-file-name) nil))
-   (lambda () (tags-loop-eval tags-loop-scan))))
+     (lambda () (message "Scanning file %s...found" buffer-file-name) nil))))
 
 ;;;###autoload
 (defun tags-loop-continue (&optional first-time)