texinfo-commits
[Top][All Lists]
Advanced

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

texinfo ChangeLog doc/refcard/txivarcheck


From: Patrice Dumas
Subject: texinfo ChangeLog doc/refcard/txivarcheck
Date: Wed, 12 Sep 2012 22:23:10 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Patrice Dumas <pertusus>        12/09/12 22:23:10

Modified files:
        .              : ChangeLog 
        doc/refcard    : txivarcheck 

Log message:
                * doc/refcard/txivarcheck(read_tp): filter out customization 
                variables that are internal for the Parser and documented
                in the Parser, and variables that may only be set in
                init files as they are arrays or hashes.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1418&r2=1.1419
http://cvs.savannah.gnu.org/viewcvs/texinfo/doc/refcard/txivarcheck?cvsroot=texinfo&r1=1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1418
retrieving revision 1.1419
diff -u -b -r1.1418 -r1.1419
--- ChangeLog   12 Sep 2012 21:52:58 -0000      1.1418
+++ ChangeLog   12 Sep 2012 22:23:10 -0000      1.1419
@@ -1,3 +1,10 @@
+2012-09-13  Patrice Dumas  <address@hidden>
+
+       * doc/refcard/txivarcheck(read_tp): filter out customization 
+       variables that are internal for the Parser and documented
+       in the Parser, and variables that may only be set in
+       init files as they are arrays or hashes.
+
 2012-09-12  Karl Berry  <address@hidden>
 
        * doc/texinfo.txi (verb): make example input match output.

Index: doc/refcard/txivarcheck
===================================================================
RCS file: /sources/texinfo/texinfo/doc/refcard/txivarcheck,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- doc/refcard/txivarcheck     12 Sep 2012 18:15:43 -0000      1.1
+++ doc/refcard/txivarcheck     12 Sep 2012 22:23:10 -0000      1.2
@@ -1,5 +1,5 @@
 #!/usr/bin/env perl
-# $Id: txivarcheck,v 1.1 2012/09/12 18:15:43 karl Exp $
+# $Id: txivarcheck,v 1.2 2012/09/12 22:23:10 pertusus Exp $
 # Copyright 2012 Free Software Foundation, Inc.
 # 
 # This program is free software; you can redistribute it and/or modify
@@ -113,6 +113,7 @@
   while (<FILE>) {
     chomp;
     my ($var,$where) = split (/\t/);
+    next if ($where eq 'variable_other_settables' or $where eq 
'parser_options');
     push (@ret, $var);
   }
   close (FILE) || warn "close($FILE) failed: $!";  



reply via email to

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