User: adrian  
  Date: 05/09/25 23:40:19
  Modified:    xemacs/man/lispref compile.texi
  Log:
  xemacs-21.5-clean: Fix variable reference in lispref/compile.texi
  
  -------------------- ChangeLog entries follow: --------------------
  
  man/ChangeLog addition:
  
  2005-09-25  Adrian Aichner  <adrian(a)xemacs.org>
  
  	* lispref/compile.texi (Compilation Options): Supply missing
  	argument to @var{}, using same SYMBOL as in variable docstring of
  	`byte-compile-print-gensym'.
  
  Revision  Changes    Path
  1.311     +6 -0      XEmacs/xemacs/man/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /pack/xemacscvs/XEmacs/xemacs/man/ChangeLog,v
  retrieving revision 1.310
  retrieving revision 1.311
  diff -u -p -r1.310 -r1.311
  --- ChangeLog	2005/09/14 05:30:00	1.310
  +++ ChangeLog	2005/09/25 21:40:17	1.311
  @@ -1,3 +1,9 @@
  +2005-09-25  Adrian Aichner  <adrian(a)xemacs.org>
  +
  +	* lispref/compile.texi (Compilation Options): Supply missing
  +	argument to @var{}, using same SYMBOL as in variable docstring of
  +	`byte-compile-print-gensym'.
  +
   2005-09-14  Stephen J. Turnbull  <stephen(a)xemacs.org>
   
   	* XEmacs 21.5.22 "cucumber" is released.
  
  
  
  1.7       +2 -2      XEmacs/xemacs/man/lispref/compile.texi
  
  Index: compile.texi
  ===================================================================
  RCS file: /pack/xemacscvs/XEmacs/xemacs/man/lispref/compile.texi,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -p -r1.6 -r1.7
  --- compile.texi	2002/11/12 03:57:48	1.6
  +++ compile.texi	2005/09/25 21:40:19	1.7
  @@ -503,8 +503,8 @@ Default: @code{nil} when Emacs version i
   @defvar byte-compile-print-gensym
   When non-@code{nil}, the compiler may generate code that creates unique
   symbols at run-time.  This is achieved by printing uninterned symbols
  -using the @code{#:@var{}} notation, so that they will be read uninterned
  -when run.
  +using the @code{#:@var{SYMBOL}} notation, so that they will be read
  +uninterned when run.
   
   With this feature, code that uses uninterned symbols in macros will
   not be runnable under pre-21.0 XEmacsen.