]> git.eshelyaron.com Git - emacs.git/commitdiff
Add suggestion to docstring
authorWilfred Hughes <me@wilfred.me.uk>
Mon, 29 May 2017 00:04:41 +0000 (01:04 +0100)
committerWilfred Hughes <me@wilfred.me.uk>
Mon, 29 May 2017 00:04:41 +0000 (01:04 +0100)
* lisp/subr.el (interactive-p): Mention commandp, as this is often
  what users are actually looking for.

lisp/subr.el

index 8d5d2a779c69e40915e3b0640597354336f11916..0dce02de8ba9ec292a33e8cdc742b596f16ee2a7 100644 (file)
@@ -4649,7 +4649,10 @@ called from a keyboard macro or in batch mode?
 To test whether your function was called with `call-interactively',
 either (i) add an extra optional argument and give it an `interactive'
 spec that specifies non-nil unconditionally (such as \"p\"); or (ii)
-use `called-interactively-p'."
+use `called-interactively-p'.
+
+To test whether a function can be called interactively, use
+`commandp'."
   (declare (obsolete called-interactively-p "23.2"))
   (called-interactively-p 'interactive))