diff options
| author | Eli Zaretskii | 2026-01-03 17:31:15 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2026-01-03 17:31:15 +0200 |
| commit | ea1b7d53d2a166ced296d4049bb55f94c78f92ad (patch) | |
| tree | 296fc6e30ee5be2b2a5f5a33756cd6f00fe6ebe8 | |
| parent | 04112d04f2d5d89e144850bb51b7c221fe2bf51c (diff) | |
| download | emacs-ea1b7d53d2a166ced296d4049bb55f94c78f92ad.tar.gz emacs-ea1b7d53d2a166ced296d4049bb55f94c78f92ad.zip | |
; * lisp/emacs-lisp/inline.el (define-inline): Fix Info link (bug#80122).
| -rw-r--r-- | lisp/emacs-lisp/inline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/inline.el b/lisp/emacs-lisp/inline.el index 9a1faaca126..25be0dd9c40 100644 --- a/lisp/emacs-lisp/inline.el +++ b/lisp/emacs-lisp/inline.el | |||
| @@ -134,7 +134,7 @@ After VARS is handled, BODY is evaluated in the new environment." | |||
| 134 | This is halfway between `defmacro' and `defun'. BODY is used as a blueprint | 134 | This is halfway between `defmacro' and `defun'. BODY is used as a blueprint |
| 135 | both for the body of the function and for the body of the compiler-macro | 135 | 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 | 139 | A (noinline t) in the `declare' form prevents the definition of the |
| 140 | compiler macro. This is for the rare case in which you want to use this | 140 | compiler macro. This is for the rare case in which you want to use this |