diff options
| author | Sean Whitton | 2025-10-26 14:36:48 +0000 |
|---|---|---|
| committer | Sean Whitton | 2025-10-26 14:36:48 +0000 |
| commit | bb5a03592f413a9c5bef4e15608cb336c0335438 (patch) | |
| tree | cbfd5e84a2892cb5ae2afab0844616fdc5706a57 | |
| parent | ab5e64aa951060a9123c09aba61edd12978a6996 (diff) | |
| download | emacs-bb5a03592f413a9c5bef4e15608cb336c0335438.tar.gz emacs-bb5a03592f413a9c5bef4e15608cb336c0335438.zip | |
; * lisp/emacs-lisp/inline.el (define-inline): Fix line length.
| -rw-r--r-- | lisp/emacs-lisp/inline.el | 6 |
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 | |||
| 136 | used to generate the code inlined at each call site. | 136 | used to generate the code inlined at each call site. |
| 137 | See Info node `(elisp)Inline Functions for more details. | 137 | See Info node `(elisp)Inline Functions for more details. |
| 138 | 138 | ||
| 139 | A (noinline t) in the `declare' form prevents the definition of the compiler macro, | 139 | A (noinline t) in the `declare' form prevents the definition of the |
| 140 | for the rare case where you want to use this macro to define a function that should | 140 | compiler macro. This is for the rare case that you want to use this |
| 141 | not be inlined." | 141 | macro 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 |