summaryrefslogtreecommitdiff
path: root/doc/misc/cl.texi
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-04-02 20:08:08 +0300
committerEli Zaretskii <eliz@gnu.org>2019-04-02 20:08:08 +0300
commitbb669166ba6b33cd1a927c772c87ee2240a10f89 (patch)
tree7379fc4a3bd00174769d9aab12a02b4111cf7b07 /doc/misc/cl.texi
parent144b2243b7cee4adbc3217d871c575921f95af54 (diff)
downloademacs-bb669166ba6b33cd1a927c772c87ee2240a10f89.tar.gz
emacs-bb669166ba6b33cd1a927c772c87ee2240a10f89.tar.bz2
emacs-bb669166ba6b33cd1a927c772c87ee2240a10f89.zip
Fix documentation of last change
* doc/misc/cl.texi (Structures): Document :noinline. * etc/NEWS: Mark the entry for :noinline as documented.
Diffstat (limited to 'doc/misc/cl.texi')
-rw-r--r--doc/misc/cl.texi6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 32b5076c902..eb06791ba90 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -4149,7 +4149,7 @@ package, @code{cl-typep} simply looks for a function called
only if they used the default predicate name.
@item :include
-This option implements a very limited form of C++-style inheritance.
+This option implements a very limited form of C@t{++}-style inheritance.
The argument is the name of another structure type previously
created with @code{cl-defstruct}. The effect is to cause the new
structure type to inherit all of the included structure's slots
@@ -4194,6 +4194,10 @@ of a @code{person}, plus extra slots that are specific to
astronauts. Operations that work on people (like @code{person-name})
work on astronauts just like other people.
+@item :noinline
+If this option is present, this structure's functions will not be
+inlined, even functions that normally would.
+
@item :print-function
In full Common Lisp, this option allows you to specify a function
that is called to print an instance of the structure type. The