diff options
| author | John Paul Wallington | 2004-04-20 00:17:46 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2004-04-20 00:17:46 +0000 |
| commit | 474d05350a11c173e90458485e72f50d94acfb30 (patch) | |
| tree | 6cb1229ef620c77b086c3028b76dd265597b52fe /src | |
| parent | 95cc50b6896e569cc3db3267fb2f61605be2d226 (diff) | |
| download | emacs-474d05350a11c173e90458485e72f50d94acfb30.tar.gz emacs-474d05350a11c173e90458485e72f50d94acfb30.zip | |
(Fassoc, Feql): Fix indentation.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1560,7 +1560,7 @@ assq_no_quit (key, list) | |||
| 1560 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, | 1560 | DEFUN ("assoc", Fassoc, Sassoc, 2, 2, 0, |
| 1561 | doc: /* Return non-nil if KEY is `equal' to the car of an element of LIST. | 1561 | doc: /* Return non-nil if KEY is `equal' to the car of an element of LIST. |
| 1562 | The value is actually the first element of LIST whose car equals KEY. */) | 1562 | The value is actually the first element of LIST whose car equals KEY. */) |
| 1563 | (key, list) | 1563 | (key, list) |
| 1564 | Lisp_Object key, list; | 1564 | Lisp_Object key, list; |
| 1565 | { | 1565 | { |
| 1566 | Lisp_Object result, car; | 1566 | Lisp_Object result, car; |
| @@ -2138,7 +2138,7 @@ The PLIST is modified by side effects. */) | |||
| 2138 | DEFUN ("eql", Feql, Seql, 2, 2, 0, | 2138 | DEFUN ("eql", Feql, Seql, 2, 2, 0, |
| 2139 | doc: /* Return t if the two args are the same Lisp object. | 2139 | doc: /* Return t if the two args are the same Lisp object. |
| 2140 | Floating-point numbers of equal value are `eql', but they may not be `eq'. */) | 2140 | Floating-point numbers of equal value are `eql', but they may not be `eq'. */) |
| 2141 | (obj1, obj2) | 2141 | (obj1, obj2) |
| 2142 | Lisp_Object obj1, obj2; | 2142 | Lisp_Object obj1, obj2; |
| 2143 | { | 2143 | { |
| 2144 | if (FLOATP (obj1)) | 2144 | if (FLOATP (obj1)) |