aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXue Fuqiao2013-04-24 06:26:40 +0800
committerXue Fuqiao2013-04-24 06:26:40 +0800
commitedbf45693574f38188d102e9ff617e06c940fe20 (patch)
treef9876f30979759f10eb6c758e5fa14dbcd44bb12
parentb46a056ef2486b9f5625972c03cfc02934a346c3 (diff)
downloademacs-edbf45693574f38188d102e9ff617e06c940fe20.tar.gz
emacs-edbf45693574f38188d102e9ff617e06c940fe20.zip
Doc fix for emacs-lisp-intro.texi.
* doc/lispintro/emacs-lisp-intro.texi (Writing Defuns, Prevent confusion, Determining the Element, lambda): Refine the doc about Lisp macros, reported by Glenn Morris.
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi8
2 files changed, 7 insertions, 6 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog
index be9f9f963c0..a1ec47a7724 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,7 +1,8 @@
12013-04-23 Xue Fuqiao <xfq.free@gmail.com> 12013-04-23 Xue Fuqiao <xfq.free@gmail.com>
2 2
3 * emacs-lisp-intro.texi (Complications, defvar): Refine the doc 3 * emacs-lisp-intro.texi (Complications, defvar, Writing Defuns)
4 about Lisp macros. (http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00618.html) 4 (Prevent confusion, Determining the Element, lambda): Refine the
5 doc about Lisp macros, reported by Glenn Morris.
5 6
62013-04-21 Xue Fuqiao <xfq.free@gmail.com> 72013-04-21 Xue Fuqiao <xfq.free@gmail.com>
7 8
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index 7831603124e..e0c51a9a8fb 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -3059,7 +3059,7 @@ symbol refers to it.)
3059 3059
3060@menu 3060@menu
3061* Primitive Functions:: 3061* Primitive Functions::
3062* defun:: The @code{defun} special form. 3062* defun:: The @code{defun} macro.
3063* Install:: Install a function definition. 3063* Install:: Install a function definition.
3064* Interactive:: Making a function interactive. 3064* Interactive:: Making a function interactive.
3065* Interactive Options:: Different options for @code{interactive}. 3065* Interactive Options:: Different options for @code{interactive}.
@@ -3700,7 +3700,7 @@ name for a @dfn{local variable} that overshadows any use of the same
3700name outside the @code{let} expression. This is like understanding 3700name outside the @code{let} expression. This is like understanding
3701that whenever your host refers to `the house', he means his house, not 3701that whenever your host refers to `the house', he means his house, not
3702yours. (Symbols used in argument lists work the same way. 3702yours. (Symbols used in argument lists work the same way.
3703@xref{defun, , The @code{defun} Special Form}.) 3703@xref{defun, , The @code{defun} Macro}.)
3704 3704
3705Local variables created by a @code{let} expression retain their value 3705Local variables created by a @code{let} expression retain their value
3706@emph{only} within the @code{let} expression itself (and within 3706@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).
19456@ignore 19456@ignore
19457@c texi2dvi fails when the name of the section is within ifnottex ... 19457@c texi2dvi fails when the name of the section is within ifnottex ...
19458(@xref{Prevent confusion, , @code{let} Prevents Confusion}, and 19458(@xref{Prevent confusion, , @code{let} Prevents Confusion}, and
19459@ref{defun, , The @code{defun} Special Form}.) 19459@ref{defun, , The @code{defun} Macro}.)
19460@end ignore 19460@end ignore
19461 19461
19462@node yank 19462@node yank
@@ -20976,7 +20976,7 @@ equivalent of @code{multiply-by-seven} is:
20976@end smallexample 20976@end smallexample
20977 20977
20978@noindent 20978@noindent
20979(@xref{defun, , The @code{defun} Special Form}.) 20979(@xref{defun, , The @code{defun} Macro}.)
20980 20980
20981@need 1250 20981@need 1250
20982@noindent 20982@noindent