diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-04 19:28:00 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-04 19:28:00 -0700 |
commit | 3e1a3a0035ec36f37e59da1d31002dbe9c6f2a1a (patch) | |
tree | 01a00c2c0b94107f9b2554173da3cb3f49606908 /doc | |
parent | 9658dc2ada51f4dc8e598fbdd79da84e99824722 (diff) | |
download | emacs-3e1a3a0035ec36f37e59da1d31002dbe9c6f2a1a.tar.gz |
Undo part of previous change
Diffstat (limited to 'doc')
-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. @cindex @code{defsubr}, Lisp symbol for a primitive Defining the C function is not enough to make a Lisp primitive available; you must also create the Lisp symbol for the primitive and -store a suitable subr object in its function cell: +store a suitable subr object in its function cell. The code looks like +this: @example defsubr (&@var{sname}); |