diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-08-08 05:32:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-08-24 04:27:27 +0200 |
commit | bc5da2c3fb882a2df9d358e5b82869ab48a04d9a (patch) | |
tree | 021ffa2e256dedb972d327cc434a7dd7f8688b50 /doc/lispref/help.texi | |
parent | 326fdb9ec05ab5e4aec0c7064272bb3d223e9875 (diff) | |
download | emacs-bc5da2c3fb882a2df9d358e5b82869ab48a04d9a.tar.gz emacs-bc5da2c3fb882a2df9d358e5b82869ab48a04d9a.tar.bz2 emacs-bc5da2c3fb882a2df9d358e5b82869ab48a04d9a.zip |
Avoid some uses of obsolete function interactive-p
* doc/lispref/help.texi (Accessing Documentation):
* lisp/cedet/data-debug.el:
* lisp/emacs-lisp/edebug.el (edebug-wrap-def-body):
* lisp/simple.el (append-next-kill):
* test/manual/cedet/cedet-utests.el (cedet-utest, pulse-test):
* test/manual/cedet/semantic-tests.el (semantic-lex-spp-write-utest)
(semantic-symref-test-count-hits-in-tag): Use 'called-interactively-p'
instead of obsolete function 'interactive-p'.
Diffstat (limited to 'doc/lispref/help.texi')
-rw-r--r-- | doc/lispref/help.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/lispref/help.texi b/doc/lispref/help.texi index 9b3c4fcb23d..d4505d5c3ff 100644 --- a/doc/lispref/help.texi +++ b/doc/lispref/help.texi @@ -220,7 +220,8 @@ in the *Help* buffer." @group ;; @r{Display the data.} - (help-setup-xref (list 'describe-symbols pattern) (interactive-p)) + (help-setup-xref (list 'describe-symbols pattern) + (called-interactively-p 'interactive)) (with-help-window (help-buffer) (mapcar describe-func (sort sym-list 'string<))))) @end group |