diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | doc/lispref/functions.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/intro.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/syntax.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/variables.texi | 2 |
5 files changed, 13 insertions, 5 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index b2f89024726..2036831cb89 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2012-12-30 Wolfgang Jenkner <wjenkner@inode.at> | ||
| 2 | |||
| 3 | * functions.texi (Declare Form): | ||
| 4 | * intro.texi (A Sample Function Description): | ||
| 5 | * syntax.texi (Syntax Table Internals, Syntax Table Functions): | ||
| 6 | * variables.texi (Using Lexical Binding): Don't use @var or CAPS | ||
| 7 | in @def.. commands. (Bug#13292) | ||
| 8 | |||
| 1 | 2012-12-29 Eli Zaretskii <eliz@gnu.org> | 9 | 2012-12-29 Eli Zaretskii <eliz@gnu.org> |
| 2 | 10 | ||
| 3 | * files.texi (Changing Files): Document the return values of | 11 | * files.texi (Changing Files): Document the return values of |
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi index 531172031dc..10041bb664a 100644 --- a/doc/lispref/functions.texi +++ b/doc/lispref/functions.texi | |||
| @@ -1266,7 +1266,7 @@ obsolete, or giving its forms a special @key{TAB} indentation | |||
| 1266 | convention in Emacs Lisp mode. | 1266 | convention in Emacs Lisp mode. |
| 1267 | 1267 | ||
| 1268 | @anchor{Definition of declare} | 1268 | @anchor{Definition of declare} |
| 1269 | @defmac declare @var{specs}@dots{} | 1269 | @defmac declare specs@dots{} |
| 1270 | This macro ignores its arguments and evaluates to @code{nil}; it has | 1270 | This macro ignores its arguments and evaluates to @code{nil}; it has |
| 1271 | no run-time effect. However, when a @code{declare} form occurs in the | 1271 | no run-time effect. However, when a @code{declare} form occurs in the |
| 1272 | @var{declare} argument of a @code{defun} or @code{defsubst} function | 1272 | @var{declare} argument of a @code{defun} or @code{defsubst} function |
diff --git a/doc/lispref/intro.texi b/doc/lispref/intro.texi index 12463dac09c..bee43a9bc3f 100644 --- a/doc/lispref/intro.texi +++ b/doc/lispref/intro.texi | |||
| @@ -408,7 +408,7 @@ stands for zero or more arguments. Parentheses are used when several | |||
| 408 | arguments are grouped into additional levels of list structure. Here | 408 | arguments are grouped into additional levels of list structure. Here |
| 409 | is an example: | 409 | is an example: |
| 410 | 410 | ||
| 411 | @defspec count-loop (@var{var} [@var{from} @var{to} [@var{inc}]]) @var{body}@dots{} | 411 | @defspec count-loop (var [from to [inc]]) body@dots{} |
| 412 | This imaginary special form implements a loop that executes the | 412 | This imaginary special form implements a loop that executes the |
| 413 | @var{body} forms and then increments the variable @var{var} on each | 413 | @var{body} forms and then increments the variable @var{var} on each |
| 414 | iteration. On the first iteration, the variable has the value | 414 | iteration. On the first iteration, the variable has the value |
diff --git a/doc/lispref/syntax.texi b/doc/lispref/syntax.texi index c773ca74d96..777bae6573b 100644 --- a/doc/lispref/syntax.texi +++ b/doc/lispref/syntax.texi | |||
| @@ -506,7 +506,7 @@ This function returns the current syntax table, which is the table for | |||
| 506 | the current buffer. | 506 | the current buffer. |
| 507 | @end defun | 507 | @end defun |
| 508 | 508 | ||
| 509 | @defmac with-syntax-table @var{table} @var{body}@dots{} | 509 | @defmac with-syntax-table table body@dots{} |
| 510 | This macro executes @var{body} using @var{table} as the current syntax | 510 | This macro executes @var{body} using @var{table} as the current syntax |
| 511 | table. It returns the value of the last form in @var{body}, after | 511 | table. It returns the value of the last form in @var{body}, after |
| 512 | restoring the old current syntax table. | 512 | restoring the old current syntax table. |
| @@ -998,7 +998,7 @@ corresponds to each syntax flag. | |||
| 998 | @samp{4} @tab @code{(lsh 1 19)} | 998 | @samp{4} @tab @code{(lsh 1 19)} |
| 999 | @end multitable | 999 | @end multitable |
| 1000 | 1000 | ||
| 1001 | @defun string-to-syntax @var{desc} | 1001 | @defun string-to-syntax desc |
| 1002 | Given a syntax descriptor @var{desc} (a string), this function returns | 1002 | Given a syntax descriptor @var{desc} (a string), this function returns |
| 1003 | the corresponding raw syntax descriptor. | 1003 | the corresponding raw syntax descriptor. |
| 1004 | @end defun | 1004 | @end defun |
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 4103c30f663..79f5eaa7c26 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi | |||
| @@ -1057,7 +1057,7 @@ variables}. Every variable that has been defined with @code{defvar}, | |||
| 1057 | (@pxref{Defining Variables}). All other variables are subject to | 1057 | (@pxref{Defining Variables}). All other variables are subject to |
| 1058 | lexical binding. | 1058 | lexical binding. |
| 1059 | 1059 | ||
| 1060 | @defun special-variable-p SYMBOL | 1060 | @defun special-variable-p symbol |
| 1061 | This function returns non-@code{nil} if @var{symbol} is a special | 1061 | This function returns non-@code{nil} if @var{symbol} is a special |
| 1062 | variable (i.e., it has a @code{defvar}, @code{defcustom}, or | 1062 | variable (i.e., it has a @code{defvar}, @code{defcustom}, or |
| 1063 | @code{defconst} variable definition). Otherwise, the return value is | 1063 | @code{defconst} variable definition). Otherwise, the return value is |