texinfo-commits
[Top][All Lists]
Advanced

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

texinfo/tp TODO Texinfo/Common.pm


From: Patrice Dumas
Subject: texinfo/tp TODO Texinfo/Common.pm
Date: Fri, 10 Aug 2012 09:09:11 +0000

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

Modified files:
        tp             : TODO 
        tp/Texinfo     : Common.pm 

Log message:
        Separate variable_settables into variable_other_settables and 
        variable_string_settables

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/TODO?cvsroot=texinfo&r1=1.285&r2=1.286
http://cvs.savannah.gnu.org/viewcvs/texinfo/tp/Texinfo/Common.pm?cvsroot=texinfo&r1=1.147&r2=1.148

Patches:
Index: TODO
===================================================================
RCS file: /sources/texinfo/texinfo/tp/TODO,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -b -r1.285 -r1.286
--- TODO        5 Aug 2012 14:34:13 -0000       1.285
+++ TODO        10 Aug 2012 09:09:10 -0000      1.286
@@ -6,6 +6,7 @@
 ===================
 
 Document TEXTCONTENT_COMMENT, 'FLOAT_NAME_IN_XREF', 'ALWAYS_NODE_ARG_IN_XREF'
+DEBUGCOUNT
 
 
 Bugs

Index: Texinfo/Common.pm
===================================================================
RCS file: /sources/texinfo/texinfo/tp/Texinfo/Common.pm,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -b -r1.147 -r1.148
--- Texinfo/Common.pm   5 Aug 2012 14:34:13 -0000       1.147
+++ Texinfo/Common.pm   10 Aug 2012 09:09:11 -0000      1.148
@@ -146,7 +146,7 @@
   'DEBUGCOUNT', 'DEBUGTREE', 'RAWTEXT', 'TEXTCONTENT', 'PLAINTEXINFO'
 );
 
-my @variable_settables = (
+my @variable_string_settables = (
   'DEBUG', 'FRAMES', 'FRAMESET_DOCTYPE', 'DOCTYPE', 'TEST', 'DUMP_TEXI',
   'TOP_FILE', 'SHOW_MENU', 'USE_NODES', 'TOC_LINKS', 'SHORTEXTN',
   'PREFIX', 'DEF_TABLE', 'L2H', 'MONOLITHIC',
@@ -188,7 +188,10 @@
   'TREE_TRANSFORMATIONS', 'BASEFILENAME_LENGTH',
 # FIXME document
   'TEXTCONTENT_COMMENT', 'FLOAT_NAME_IN_XREF', 'ALWAYS_NODE_ARG_IN_XREF',
-# FIXME Not strings. To be documented.
+);
+# Not strings. 
+# FIXME To be documented somewhere, but where?
+my @variable_other_settables = (
   'LINKS_BUTTONS', 'TOP_BUTTONS', 'SECTION_BUTTONS', 'BUTTONS_TEXT',
   'BUTTONS_ACCESSKEY', 'BUTTONS_REL', 'BUTTONS_GOTO',
   'CHAPTER_FOOTER_BUTTONS', 'SECTION_FOOTER_BUTTONS',
@@ -203,7 +206,8 @@
 my %valid_options;
 foreach my $var (@document_settable_at_commands, 
          @document_settable_unique_at_commands,
-         @command_line_settables, @variable_settables, @parser_options,
+         @command_line_settables, @variable_string_settables, 
+         @variable_other_settables, @parser_options,
          @formats_settable,
          @obsolete_variables, @variable_settables_not_used) {
   $valid_options{$var} = 1;



reply via email to

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