diff options
| -rw-r--r-- | doc/lispref/internals.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 301aa0b23be..eb9d81f196f 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -666,7 +666,8 @@ read-only (on certain operating systems) as a result of dumping Emacs. | |||
| 666 | @cindex @code{defsubr}, Lisp symbol for a primitive | 666 | @cindex @code{defsubr}, Lisp symbol for a primitive |
| 667 | Defining the C function is not enough to make a Lisp primitive | 667 | Defining the C function is not enough to make a Lisp primitive |
| 668 | available; you must also create the Lisp symbol for the primitive and | 668 | available; you must also create the Lisp symbol for the primitive and |
| 669 | store a suitable subr object in its function cell: | 669 | store a suitable subr object in its function cell. The code looks like |
| 670 | this: | ||
| 670 | 671 | ||
| 671 | @example | 672 | @example |
| 672 | defsubr (&@var{sname}); | 673 | defsubr (&@var{sname}); |