]> git.eshelyaron.com Git - emacs.git/commitdiff
Use proper types for Eshell warnings
authorJim Porter <jporterbugs@gmail.com>
Wed, 18 Jan 2023 04:51:15 +0000 (20:51 -0800)
committerJim Porter <jporterbugs@gmail.com>
Wed, 18 Jan 2023 17:14:59 +0000 (09:14 -0800)
* lisp/eshell/esh-var.el (eshell-get-variable):
* lisp/eshell/em-basic (eshell/echo): Don't use ':warning'; that's a
warning level, not a warning type.

lisp/eshell/em-basic.el
lisp/eshell/esh-var.el

index dfbe4db08966166a5fcf74704e3771e50870e913..bfff3bdf56e7d2c73709246840610177057fd0c8 100644 (file)
@@ -132,7 +132,8 @@ or `eshell-printn' for display."
      ;; bug#27361.
      (when (equal output-newline '(nil))
        (display-warning
-        :warning "To terminate with a newline, you should use -N instead."))
+        '(eshell echo)
+        "To terminate with a newline, you should use -N instead."))
      (eshell-echo args output-newline))))
 
 (defun eshell/printnl (&rest args)
index df1413c2de7df141660fd452017a8e2e55da5d4f..dfc52083acb632ee39e7265f0123a770f1478d72 100644 (file)
@@ -613,9 +613,10 @@ If QUOTED is non-nil, this was invoked inside double-quotes."
               (if (or (eq max-arity 'many) (>= max-arity 2))
                   (funcall target indices quoted)
                 (display-warning
-                 :warning (concat "Function for `eshell-variable-aliases-list' "
-                                  "entry should accept two arguments: INDICES "
-                                  "and QUOTED.'"))
+                 '(eshell variable-alias)
+                 (concat "Function for `eshell-variable-aliases-list' "
+                         "entry should accept two arguments: INDICES "
+                         "and QUOTED.'"))
                 (funcall target indices)))))
          ((symbolp target)
           (eshell-apply-indices (symbol-value target) indices quoted))