summaryrefslogtreecommitdiff
path: root/lispref/functions.texi
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2004-06-23 16:40:04 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2004-06-23 16:40:04 +0000
commit7baeca0c0e02d0c442b112573f9845b4a0cc38c0 (patch)
tree7d23c0b66dd6f8dee440ef98562a8b6e5ce689ec /lispref/functions.texi
parentfacf1bca12f4be8f6846f3073f76d524d15c7c41 (diff)
downloademacs-7baeca0c0e02d0c442b112573f9845b4a0cc38c0.tar.gz
Reposition @anchor's.
Diffstat (limited to 'lispref/functions.texi')
-rw-r--r--lispref/functions.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/lispref/functions.texi b/lispref/functions.texi
index 427389b4a68..5c7433507b0 100644
--- a/lispref/functions.texi
+++ b/lispref/functions.texi
@@ -1,6 +1,6 @@
@c -*-texinfo-*-
@c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999
+@c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2004
@c Free Software Foundation, Inc.
@c See the file elisp.texi for copying conditions.
@setfilename ../info/functions
@@ -577,8 +577,8 @@ defined is often done deliberately, and there is no way to distinguish
deliberate redefinition from unintentional redefinition.
@end defspec
-@anchor{Definition of defalias}
@defun defalias name definition &optional docstring
+@anchor{Definition of defalias}
This special form defines the symbol @var{name} as a function, with
definition @var{definition} (which can be any valid Lisp function).
It returns @var{definition}.
@@ -752,8 +752,8 @@ is a sparse array whose nominal range of indices is very large. To map
over a char-table in a way that deals properly with its sparse nature,
use the function @code{map-char-table} (@pxref{Char-Tables}).
-@anchor{Definition of mapcar}
@defun mapcar function sequence
+@anchor{Definition of mapcar}
@code{mapcar} applies @var{function} to each element of @var{sequence}
in turn, and returns a list of the results.