diff options
| author | Stefan Kangas | 2020-12-06 10:34:14 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2020-12-06 10:37:31 +0100 |
| commit | 61497defb42e84a7ca32774a0ac16b30789f91d8 (patch) | |
| tree | ec89ef17025f04ec69615c0e351ec4d0d8976163 | |
| parent | ba02ac89e6c69f220f15ef967500378cd1ded683 (diff) | |
| download | emacs-61497defb42e84a7ca32774a0ac16b30789f91d8.tar.gz emacs-61497defb42e84a7ca32774a0ac16b30789f91d8.zip | |
; * lisp/subr.el (interactive-p): Note to not remove in a hurry.
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 4b75268c04d..cf41f77f2dc 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -5258,6 +5258,8 @@ use `called-interactively-p'. | |||
| 5258 | 5258 | ||
| 5259 | To test whether a function can be called interactively, use | 5259 | To test whether a function can be called interactively, use |
| 5260 | `commandp'." | 5260 | `commandp'." |
| 5261 | ;; Kept around for now. See discussion at: | ||
| 5262 | ;; https://lists.gnu.org/r/emacs-devel/2020-08/msg00564.html | ||
| 5261 | (declare (obsolete called-interactively-p "23.2")) | 5263 | (declare (obsolete called-interactively-p "23.2")) |
| 5262 | (called-interactively-p 'interactive)) | 5264 | (called-interactively-p 'interactive)) |
| 5263 | 5265 | ||