aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2019-10-10 06:00:20 +0200
committerJuanma Barranquero2019-10-10 06:00:20 +0200
commitb3314ac5c43414a5de518794d002aa3801ed809f (patch)
treedcd2db75f987bbe79e5acdda36cd0f796151533c /src
parent46d11bcfa381c13a9719b7ecd3f9d4cc92c34089 (diff)
downloademacs-b3314ac5c43414a5de518794d002aa3801ed809f.tar.gz
emacs-b3314ac5c43414a5de518794d002aa3801ed809f.zip
identity, ignore: Make arg names more consistent with docs
* lisp/subr.el (ignore): Rename argument IGNORE to ARGUMENTS. * src/fns.c (Fidentity): Rename ARG to ARGUMENT. * doc/lispref/functions.texi (Calling Functions): Fix references.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fns.c b/src/fns.c
index 37c581f15b8..fc1abe8b18a 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -49,11 +49,11 @@ static bool internal_equal (Lisp_Object, Lisp_Object,
49 enum equal_kind, int, Lisp_Object); 49 enum equal_kind, int, Lisp_Object);
50 50
51DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, 51DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0,
52 doc: /* Return the argument unchanged. */ 52 doc: /* Return the ARGUMENT unchanged. */
53 attributes: const) 53 attributes: const)
54 (Lisp_Object arg) 54 (Lisp_Object argument)
55{ 55{
56 return arg; 56 return argument;
57} 57}
58 58
59DEFUN ("random", Frandom, Srandom, 0, 1, 0, 59DEFUN ("random", Frandom, Srandom, 0, 1, 0,