aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Whitton2025-10-26 14:36:48 +0000
committerSean Whitton2025-10-26 14:36:48 +0000
commitbb5a03592f413a9c5bef4e15608cb336c0335438 (patch)
treecbfd5e84a2892cb5ae2afab0844616fdc5706a57
parentab5e64aa951060a9123c09aba61edd12978a6996 (diff)
downloademacs-bb5a03592f413a9c5bef4e15608cb336c0335438.tar.gz
emacs-bb5a03592f413a9c5bef4e15608cb336c0335438.zip
; * lisp/emacs-lisp/inline.el (define-inline): Fix line length.
-rw-r--r--lisp/emacs-lisp/inline.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el
index 7353bc5e81c..518b5201bc9 100644
--- a/lisp/emacs-lisp/inline.el
+++ b/lisp/emacs-lisp/inline.el
@@ -136,9 +136,9 @@ both for the body of the function and for the body of the compiler-macro
136used to generate the code inlined at each call site. 136used to generate the code inlined at each call site.
137See Info node `(elisp)Inline Functions for more details. 137See Info node `(elisp)Inline Functions for more details.
138 138
139A (noinline t) in the `declare' form prevents the definition of the compiler macro, 139A (noinline t) in the `declare' form prevents the definition of the
140for the rare case where you want to use this macro to define a function that should 140compiler macro. This is for the rare case that you want to use this
141not be inlined." 141macro to define a function that should not be inlined."
142 ;; FIXME: How can this work with CL arglists? 142 ;; FIXME: How can this work with CL arglists?
143 (declare (indent defun) (debug defun) (doc-string 3) 143 (declare (indent defun) (debug defun) (doc-string 3)
144 (autoload-macro expand)) ; expand to the defun on autoload gen 144 (autoload-macro expand)) ; expand to the defun on autoload gen