]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fix for emacs-lisp-intro.texi.
authorXue Fuqiao <xfq.free@gmail.com>
Tue, 23 Apr 2013 22:26:40 +0000 (06:26 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Tue, 23 Apr 2013 22:26:40 +0000 (06:26 +0800)
* doc/lispintro/emacs-lisp-intro.texi (Writing Defuns, Prevent confusion,
  Determining the Element, lambda): Refine the doc about Lisp macros,
  reported by Glenn Morris.

doc/lispintro/ChangeLog
doc/lispintro/emacs-lisp-intro.texi

index be9f9f963c067dd05cf70f939d63bfc4e4a43cf3..a1ec47a772474cd6a7c820583ffa0fea3952f2bc 100644 (file)
@@ -1,7 +1,8 @@
 2013-04-23  Xue Fuqiao  <xfq.free@gmail.com>
 
-       * emacs-lisp-intro.texi (Complications, defvar): Refine the doc
-       about Lisp macros. (http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00618.html)
+       * emacs-lisp-intro.texi (Complications, defvar, Writing Defuns)
+       (Prevent confusion, Determining the Element, lambda): Refine the
+       doc about Lisp macros, reported by Glenn Morris.
 
 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
 
index 7831603124e4640bc72b268ff8af0424eec11a89..e0c51a9a8fbb75fc80e1aece3dde0c35d848cde7 100644 (file)
@@ -3059,7 +3059,7 @@ symbol refers to it.)
 
 @menu
 * Primitive Functions::
-* defun::                        The @code{defun} special form.
+* defun::                        The @code{defun} macro.
 * Install::                      Install a function definition.
 * Interactive::                  Making a function interactive.
 * Interactive Options::          Different options for @code{interactive}.
@@ -3700,7 +3700,7 @@ name for a @dfn{local variable} that overshadows any use of the same
 name outside the @code{let} expression.  This is like understanding
 that whenever your host refers to `the house', he means his house, not
 yours.  (Symbols used in argument lists work the same way.
-@xref{defun, , The @code{defun} Special Form}.)
+@xref{defun, , The @code{defun} Macro}.)
 
 Local variables created by a @code{let} expression retain their value
 @emph{only} within the @code{let} expression itself (and within
@@ -19456,7 +19456,7 @@ them in an argument list (and within expressions called by them).
 @ignore
 @c texi2dvi fails when the name of the section is within ifnottex ...
 (@xref{Prevent confusion, , @code{let} Prevents Confusion}, and
-@ref{defun, , The @code{defun} Special Form}.)
+@ref{defun, , The @code{defun} Macro}.)
 @end ignore
 
 @node yank
@@ -20976,7 +20976,7 @@ equivalent of @code{multiply-by-seven} is:
 @end smallexample
 
 @noindent
-(@xref{defun, ,  The @code{defun} Special Form}.)
+(@xref{defun, ,  The @code{defun} Macro}.)
 
 @need 1250
 @noindent