emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111089: Fix bug #13292 with use o


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111089: Fix bug #13292 with use of @var in @def.. commands in ELisp manual.
Date: Sat, 29 Dec 2012 10:23:21 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111089
fixes bug: http://debbugs.gnu.org/13292
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Sat 2012-12-29 10:23:21 +0200
message:
  Fix bug #13292 with use of @var in @def.. commands in ELisp manual.
  
   doc/lispref/functions.texi (Declare Form):
   doc/lispref/intro.texi (A Sample Function Description):
   doc/lispref/syntax.texi (Syntax Table Internals, Syntax Table Functions):
   doc/lispref/variables.texi (Using Lexical Binding): Don't use @var or CAPS
   in @def.. commands.
modified:
  doc/lispref/ChangeLog
  doc/lispref/functions.texi
  doc/lispref/intro.texi
  doc/lispref/syntax.texi
  doc/lispref/variables.texi
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2012-12-27 07:55:14 +0000
+++ b/doc/lispref/ChangeLog     2012-12-29 08:23:21 +0000
@@ -1,3 +1,11 @@
+2012-12-29  Wolfgang Jenkner  <address@hidden>
+
+       * functions.texi (Declare Form):
+       * intro.texi (A Sample Function Description):
+       * syntax.texi (Syntax Table Internals, Syntax Table Functions):
+       * variables.texi (Using Lexical Binding): Don't use @var or CAPS
+       in @def.. commands.  (Bug#13292)
+
 2012-12-27  Glenn Morris  <address@hidden>
 
        * files.texi (File Names): Mention Cygwin conversion functions.

=== modified file 'doc/lispref/functions.texi'
--- a/doc/lispref/functions.texi        2012-12-05 22:27:56 +0000
+++ b/doc/lispref/functions.texi        2012-12-29 08:23:21 +0000
@@ -1266,7 +1266,7 @@
 convention in Emacs Lisp mode.
 
 @anchor{Definition of declare}
address@hidden declare @address@hidden
address@hidden declare address@hidden
 This macro ignores its arguments and evaluates to @code{nil}; it has
 no run-time effect.  However, when a @code{declare} form occurs in the
 @var{declare} argument of a @code{defun} or @code{defsubst} function

=== modified file 'doc/lispref/intro.texi'
--- a/doc/lispref/intro.texi    2012-12-05 22:27:56 +0000
+++ b/doc/lispref/intro.texi    2012-12-29 08:23:21 +0000
@@ -408,7 +408,7 @@
 arguments are grouped into additional levels of list structure.  Here
 is an example:
 
address@hidden count-loop (@var{var} address@hidden @var{to} address@hidden) 
@address@hidden
address@hidden count-loop (var [from to [inc]]) address@hidden
 This imaginary special form implements a loop that executes the
 @var{body} forms and then increments the variable @var{var} on each
 iteration.  On the first iteration, the variable has the value

=== modified file 'doc/lispref/syntax.texi'
--- a/doc/lispref/syntax.texi   2012-12-05 22:27:56 +0000
+++ b/doc/lispref/syntax.texi   2012-12-29 08:23:21 +0000
@@ -506,7 +506,7 @@
 the current buffer.
 @end defun
 
address@hidden with-syntax-table @var{table} @address@hidden
address@hidden with-syntax-table table address@hidden
 This macro executes @var{body} using @var{table} as the current syntax
 table.  It returns the value of the last form in @var{body}, after
 restoring the old current syntax table.
@@ -998,7 +998,7 @@
 @samp{4} @tab @code{(lsh 1 19)}
 @end multitable
 
address@hidden string-to-syntax @var{desc}
address@hidden string-to-syntax desc
 Given a syntax descriptor @var{desc} (a string), this function returns
 the corresponding raw syntax descriptor.
 @end defun

=== modified file 'doc/lispref/variables.texi'
--- a/doc/lispref/variables.texi        2012-12-05 22:27:56 +0000
+++ b/doc/lispref/variables.texi        2012-12-29 08:23:21 +0000
@@ -1057,7 +1057,7 @@
 (@pxref{Defining Variables}).  All other variables are subject to
 lexical binding.
 
address@hidden special-variable-p SYMBOL
address@hidden special-variable-p symbol
 This function returns address@hidden if @var{symbol} is a special
 variable (i.e., it has a @code{defvar}, @code{defcustom}, or
 @code{defconst} variable definition).  Otherwise, the return value is


reply via email to

[Prev in Thread] Current Thread [Next in Thread]