From c0f1a4f6c66a63e36a6e5a06a6f201474ce653be Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 7 May 1994 22:48:29 +0000 Subject: [PATCH] (ignore): Allow interactive call. --- lisp/subr.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/subr.el b/lisp/subr.el index 8322386fd6d..7e6a6c2d7ae 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -661,6 +661,7 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there." ;;;; Miscellanea. (defun ignore (&rest ignore) + (interactive) "Do nothing. Accept any number of arguments, but ignore them." nil)