aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2001-11-26 10:04:00 +0000
committerRichard M. Stallman2001-11-26 10:04:00 +0000
commit240cbfca032e4ecfb0b95b68424319b89215d27e (patch)
tree1d2398bf4400adb21f498e177e8b6f51ead42534
parentec9164f3a6989ee30fdf889e453df1909ea5f71b (diff)
downloademacs-240cbfca032e4ecfb0b95b68424319b89215d27e.tar.gz
emacs-240cbfca032e4ecfb0b95b68424319b89215d27e.zip
(describe-syntax): Put (interactive) after doc string.
-rw-r--r--lisp/help-funs.el2
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.
443The descriptions are inserted in a help buffer, which is then displayed. 442The descriptions are inserted in a help buffer, which is then displayed.
444BUFFER defaults to the current buffer." 443BUFFER 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)