diff options
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/cl.texi | 6 |
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 | |||
| 4149 | only if they used the default predicate name. | 4149 | only if they used the default predicate name. |
| 4150 | 4150 | ||
| 4151 | @item :include | 4151 | @item :include |
| 4152 | This option implements a very limited form of C++-style inheritance. | 4152 | This option implements a very limited form of C@t{++}-style inheritance. |
| 4153 | The argument is the name of another structure type previously | 4153 | The argument is the name of another structure type previously |
| 4154 | created with @code{cl-defstruct}. The effect is to cause the new | 4154 | created with @code{cl-defstruct}. The effect is to cause the new |
| 4155 | structure type to inherit all of the included structure's slots | 4155 | 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 | |||
| 4194 | astronauts. Operations that work on people (like @code{person-name}) | 4194 | astronauts. Operations that work on people (like @code{person-name}) |
| 4195 | work on astronauts just like other people. | 4195 | work on astronauts just like other people. |
| 4196 | 4196 | ||
| 4197 | @item :noinline | ||
| 4198 | If this option is present, this structure's functions will not be | ||
| 4199 | inlined, even functions that normally would. | ||
| 4200 | |||
| 4197 | @item :print-function | 4201 | @item :print-function |
| 4198 | In full Common Lisp, this option allows you to specify a function | 4202 | In full Common Lisp, this option allows you to specify a function |
| 4199 | that is called to print an instance of the structure type. The | 4203 | that is called to print an instance of the structure type. The |