Remove unused printerr! macro
This commit is contained in:
parent
09cb4f6716
commit
887e3e11af
2 changed files with 0 additions and 11 deletions
|
@ -75,16 +75,6 @@ into faces or ANSI codes depending on the type of sesssion we're in."
|
||||||
(apply #'doom-ansi-apply code format args))))
|
(apply #'doom-ansi-apply code format args))))
|
||||||
(format ,message ,@args)))
|
(format ,message ,@args)))
|
||||||
|
|
||||||
;;;###autoload
|
|
||||||
(defmacro printerr! (message &rest args)
|
|
||||||
"Uses `warn' in interative sessions and `message' otherwise (prints to
|
|
||||||
standard error).
|
|
||||||
|
|
||||||
Can be colored using (color ...) blocks. See `print!' for details."
|
|
||||||
`(if noninteractive
|
|
||||||
(message (format! ,message ,@args))
|
|
||||||
(warn ,message ,@args)))
|
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defmacro print! (message &rest args)
|
(defmacro print! (message &rest args)
|
||||||
"Uses `message' in interactive sessions and `princ' otherwise (prints to
|
"Uses `message' in interactive sessions and `princ' otherwise (prints to
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
;;; core/autoload/modules.el -*- lexical-binding: t; -*-
|
;;; core/autoload/modules.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(autoload 'print! "autoload/message" nil 'macro)
|
(autoload 'print! "autoload/message" nil 'macro)
|
||||||
(autoload 'printerr! "autoload/message" nil 'macro)
|
|
||||||
|
|
||||||
(defun doom--server-eval (body)
|
(defun doom--server-eval (body)
|
||||||
(require 'server)
|
(require 'server)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue