We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0218fb2 commit 951fb93Copy full SHA for 951fb93
lisp/transient.el
@@ -82,17 +82,6 @@ similar defect.") :emergency))
82
(defvar Man-notify-method)
83
(defvar pp-default-function) ; since Emacs 29.1
84
85
-(defmacro static-if (condition then-form &rest else-forms)
86
- "A conditional compilation macro.
87
-Evaluate CONDITION at macro-expansion time. If it is non-nil,
88
-expand the macro to THEN-FORM. Otherwise expand it to ELSE-FORMS
89
-enclosed in a `progn' form. ELSE-FORMS may be empty."
90
- (declare (indent 2)
91
- (debug (sexp sexp &rest sexp)))
92
- (if (eval condition lexical-binding)
93
- then-form
94
- (cons 'progn else-forms)))
95
-
96
(defmacro transient--with-emergency-exit (id &rest body)
97
(declare (indent defun))
98
(unless (keywordp id)
0 commit comments