diff options
| author | Juanma Barranquero | 2019-10-10 06:00:20 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2019-10-10 06:00:20 +0200 |
| commit | b3314ac5c43414a5de518794d002aa3801ed809f (patch) | |
| tree | dcd2db75f987bbe79e5acdda36cd0f796151533c /src | |
| parent | 46d11bcfa381c13a9719b7ecd3f9d4cc92c34089 (diff) | |
| download | emacs-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -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 | ||
| 51 | DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, | 51 | DEFUN ("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 | ||
| 59 | DEFUN ("random", Frandom, Srandom, 0, 1, 0, | 59 | DEFUN ("random", Frandom, Srandom, 0, 1, 0, |