diff options
| author | Michael Albinus | 2018-06-25 20:40:37 +0200 |
|---|---|---|
| committer | Michael Albinus | 2018-06-25 20:40:37 +0200 |
| commit | 826e8d1f12b014617c8899936730a740a09fefb1 (patch) | |
| tree | 34aca8d349ea20bb8ed87b32666cbf71c4e41655 | |
| parent | 517dc0b13554ec969222404a6d00b03853e1cb2a (diff) | |
| parent | c7848767c9210019c2a8691ff2a224f2b8a583d1 (diff) | |
| download | emacs-826e8d1f12b014617c8899936730a740a09fefb1.tar.gz emacs-826e8d1f12b014617c8899936730a740a09fefb1.zip | |
Merge branch 'emacs-26' of git.sv.gnu.org:/srv/git/emacs into emacs-26
| -rw-r--r-- | doc/lispref/internals.texi | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 25333270c3e..45c3b87c0ac 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -726,7 +726,8 @@ less than 8. | |||
| 726 | @cindex interactive specification in primitives | 726 | @cindex interactive specification in primitives |
| 727 | @item interactive | 727 | @item interactive |
| 728 | This is an interactive specification, a string such as might be used | 728 | This is an interactive specification, a string such as might be used |
| 729 | as the argument of @code{interactive} in a Lisp function. In the case | 729 | as the argument of @code{interactive} in a Lisp function |
| 730 | (@pxref{Using Interactive}). In the case | ||
| 730 | of @code{or}, it is 0 (a null pointer), indicating that @code{or} | 731 | of @code{or}, it is 0 (a null pointer), indicating that @code{or} |
| 731 | cannot be called interactively. A value of @code{""} indicates a | 732 | cannot be called interactively. A value of @code{""} indicates a |
| 732 | function that should receive no arguments when called interactively. | 733 | function that should receive no arguments when called interactively. |
| @@ -743,11 +744,6 @@ DEFUN ("foo", Ffoo, Sfoo, 0, UNEVALLED, 0 | |||
| 743 | @end group | 744 | @end group |
| 744 | @end example | 745 | @end example |
| 745 | 746 | ||
| 746 | If you wish to override a primitive interactive specification, just | ||
| 747 | set the @code{interactive-form} property of the primitive function's | ||
| 748 | symbol (@pxref{Using Interactive}). There is no need to edit C code | ||
| 749 | and recompile Emacs. | ||
| 750 | |||
| 751 | @item doc | 747 | @item doc |
| 752 | This is the documentation string. It uses C comment syntax rather | 748 | This is the documentation string. It uses C comment syntax rather |
| 753 | than C string syntax because comment syntax requires nothing special | 749 | than C string syntax because comment syntax requires nothing special |