diff options
| -rw-r--r-- | doc/lispref/loading.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index 0a01162063b..2893a6dbff9 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi | |||
| @@ -965,6 +965,14 @@ The face @var{face} was defined. | |||
| 965 | The feature @var{feature} was required. | 965 | The feature @var{feature} was required. |
| 966 | @item (provide . @var{feature}) | 966 | @item (provide . @var{feature}) |
| 967 | The feature @var{feature} was provided. | 967 | The feature @var{feature} was provided. |
| 968 | @item (cl-defmethod @var{method} @var{specializers}) | ||
| 969 | The named @var{method} was defined by using @code{cl-defmethod}, with | ||
| 970 | @var{specializers} as its specializers. | ||
| 971 | @item (cl-defmethod @var{gfun} t @dots{}) | ||
| 972 | A generic function @var{gfun} was defined by using | ||
| 973 | @code{cl-defgeneric}. The number of @code{t} members of the list | ||
| 974 | following @var{gfun} reflects the number of the generic arguments in | ||
| 975 | the @var{args} form of the corresponding @code{cl-defgeneric} call. | ||
| 968 | @end table | 976 | @end table |
| 969 | 977 | ||
| 970 | The value of @code{load-history} may have one element whose @sc{car} is | 978 | The value of @code{load-history} may have one element whose @sc{car} is |