]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename recently added macro to follow conventions
authorStefan Kangas <stefan@marxist.se>
Thu, 4 Aug 2022 10:18:46 +0000 (12:18 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 4 Aug 2022 10:18:46 +0000 (12:18 +0200)
* lisp/eshell/em-extpipe.el (eshell-extpipe--or-with-catch):
Rename from 'em-extpipe--or-with-catch'.

lisp/eshell/em-extpipe.el

index 3db1dea5955603b01f277a3c3b81a9018ec2a737..7d81f27a18f77b3901e4be3577de9478fb151d2c 100644 (file)
@@ -49,7 +49,7 @@
   (add-hook 'eshell-pre-rewrite-command-hook
             #'eshell-rewrite-external-pipeline -20 t))
 
-(defmacro em-extpipe--or-with-catch (&rest disjuncts)
+(defmacro eshell-extpipe--or-with-catch (&rest disjuncts)
   "Evaluate DISJUNCTS like `or' but catch `eshell-incomplete'.
 
 If `eshell-incomplete' is thrown during the evaluation of a
@@ -118,7 +118,7 @@ as though it were Eshell syntax."
                        (if (re-search-forward pat next t)
                            (throw 'found (match-beginning 1))
                          (goto-char next)
-                         (while (em-extpipe--or-with-catch
+                         (while (eshell-extpipe--or-with-catch
                                  (eshell-parse-lisp-argument)
                                  (eshell-parse-backslash)
                                  (eshell-parse-double-quote)