aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/subr.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index ffb4cb58184..188f6b2eb73 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -145,7 +145,10 @@ perhaps they ought to be."
145;; In the future, would be better to fix byte compiler 145;; In the future, would be better to fix byte compiler
146;; not to really compile in cases like this, 146;; not to really compile in cases like this,
147;; and use defun here. 147;; and use defun here.
148(fset 'ignore '(lambda (&rest ignore) nil)) 148(fset 'ignore '(lambda (&rest ignore)
149 "Do nothing.
150Accept any number of arguments, but ignore them."
151 nil))
149 152
150 153
151; old names 154; old names