diff options
| author | Richard M. Stallman | 2001-11-26 10:04:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-11-26 10:04:00 +0000 |
| commit | 240cbfca032e4ecfb0b95b68424319b89215d27e (patch) | |
| tree | 1d2398bf4400adb21f498e177e8b6f51ead42534 | |
| parent | ec9164f3a6989ee30fdf889e453df1909ea5f71b (diff) | |
| download | emacs-240cbfca032e4ecfb0b95b68424319b89215d27e.tar.gz emacs-240cbfca032e4ecfb0b95b68424319b89215d27e.zip | |
(describe-syntax): Put (interactive) after doc string.
| -rw-r--r-- | lisp/help-funs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-funs.el b/lisp/help-funs.el index 62049971d3f..48fef4c42fe 100644 --- a/lisp/help-funs.el +++ b/lisp/help-funs.el | |||
| @@ -438,10 +438,10 @@ it is displayed along with the global value." | |||
| 438 | 438 | ||
| 439 | ;;;###autoload | 439 | ;;;###autoload |
| 440 | (defun describe-syntax (&optional buffer) | 440 | (defun describe-syntax (&optional buffer) |
| 441 | (interactive) | ||
| 442 | "Describe the syntax specifications in the syntax table of BUFFER. | 441 | "Describe the syntax specifications in the syntax table of BUFFER. |
| 443 | The descriptions are inserted in a help buffer, which is then displayed. | 442 | The descriptions are inserted in a help buffer, which is then displayed. |
| 444 | BUFFER defaults to the current buffer." | 443 | BUFFER defaults to the current buffer." |
| 444 | (interactive) | ||
| 445 | (setq buffer (or buffer (current-buffer))) | 445 | (setq buffer (or buffer (current-buffer))) |
| 446 | (help-setup-xref (list #'describe-syntax buffer) (interactive-p)) | 446 | (help-setup-xref (list #'describe-syntax buffer) (interactive-p)) |
| 447 | (with-output-to-temp-buffer (help-buffer) | 447 | (with-output-to-temp-buffer (help-buffer) |