1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

Better docstring for null. (Bug#20815)

* src/data.c (null): Improves the docstring, saying what null returns
when OBJECT is non-nil.
This commit is contained in:
Nicolas Petton 2015-06-16 21:45:07 +02:00
parent ac1e89ebac
commit deb6e89caf

View file

@ -186,7 +186,7 @@ DEFUN ("eq", Feq, Seq, 2, 2, 0,
}
DEFUN ("null", Fnull, Snull, 1, 1, 0,
doc: /* Return t if OBJECT is nil. */
doc: /* Return t if OBJECT is nil, and return nil otherwise. */
attributes: const)
(Lisp_Object object)
{