diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-12 01:06:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-12 01:06:27 +0000 |
commit | d7b2c6c02f43ba1c278ebf8c8834867238479dc3 (patch) | |
tree | 52db2f27e596364fa2ee3645eb613dcf7f03be36 /lisp/subr.el | |
parent | ab52e7869fe48715fbf8ff7053b2415b04ccb412 (diff) | |
download | emacs-d7b2c6c02f43ba1c278ebf8c8834867238479dc3.tar.gz |
(ignore): Put doc string in right place.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 9df68710c2c..e1585f9dd71 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -681,10 +681,10 @@ If MESSAGE is nil, instructions to type EXIT-CHAR are displayed there." ;;;; Miscellanea. -(defun ignore (&rest ignore) +(defun ignore (&rest ignore) + "Do nothing and return nil. +This function accepts any number of arguments, but ignores them." (interactive) - "Do nothing. -Accept any number of arguments, but ignore them." nil) (defun error (&rest args) |