diff options
Diffstat (limited to 'doc/lispref/functions.texi')
-rw-r--r-- | doc/lispref/functions.texi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 019c75ba021..91fdcc63cbe 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi @@ -1209,7 +1209,7 @@ ways to do it. The added function is also called an @emph{advice}. @menu * Core Advising Primitives:: Primitives to manipulate advice. * Advising Named Functions:: Advising named functions. -* Advice combinators:: Ways to compose advices. +* Advice combinators:: Ways to compose advice. * Porting old advices:: Adapting code using the old defadvice. @end menu @@ -1743,6 +1743,10 @@ Indent calls to this function or macro according to @var{indent-spec}. This is typically used for macros, though it works for functions too. @xref{Indenting Macros}. +@item (interactive-only @var{value}) +Set the function's @code{interactive-only} property to @var{value}. +@xref{The interactive-only property}. + @item (obsolete @var{current-name} @var{when}) Mark the function or macro as obsolete, similar to a call to @code{make-obsolete} (@pxref{Obsolete Functions}). @var{current-name} |