From: Richard M. Stallman Date: Sat, 7 May 1994 22:48:29 +0000 (+0000) Subject: (ignore): Allow interactive call. X-Git-Tag: emacs-19.34~8453 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c0f1a4f6c66a63e36a6e5a06a6f201474ce653be;p=emacs.git (ignore): Allow interactive call. --- 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)