diff options
-rw-r--r-- | Build/source/texk/README | 3 | ||||
-rw-r--r-- | Master/texmf-dist/tex/texinfo/texinfo.tex | 10 | ||||
-rwxr-xr-x | Master/tlpkg/bin/check-files-by-format | 7 | ||||
-rw-r--r-- | Master/tlpkg/tlpsrc/chktex.tlpsrc | 2 |
4 files changed, 18 insertions, 4 deletions
diff --git a/Build/source/texk/README b/Build/source/texk/README index 784b8b2c113..b5a7ab1b122 100644 --- a/Build/source/texk/README +++ b/Build/source/texk/README @@ -30,7 +30,8 @@ bibtexu - ? cjkutils - Werner Lemberg ctan -detex - ? +detex 2.8 - checked 21may10 + http://www.cs.purdue.edu/homes/trinkle/detex/ devnag - from devnag package installed in texmf-dist. diff --git a/Master/texmf-dist/tex/texinfo/texinfo.tex b/Master/texmf-dist/tex/texinfo/texinfo.tex index be69187e4a3..5ea3f981e88 100644 --- a/Master/texmf-dist/tex/texinfo/texinfo.tex +++ b/Master/texmf-dist/tex/texinfo/texinfo.tex @@ -3,7 +3,7 @@ % Load plain if necessary, i.e., if running under initex. \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi % -\def\texinfoversion{2010-05-17.17} +\def\texinfoversion{2010-05-22.17} % % Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995, % 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, @@ -4435,6 +4435,9 @@ end \def\result{=>}% \def\textdegree{o}% % + \expandafter\ifx\csname SETtxiindexlquoteignore\endcsname\relax + \else \indexlquoteignore \fi + % % We need to get rid of all macros, leaving only the arguments (if present). % Of course this is not nearly correct, but it is the best we can do for now. % makeinfo does not expand macros in the argument to @deffn, which ends up @@ -4448,6 +4451,11 @@ end \macrolist } +% Undocumented (for FSFS 2nd ed.): @set txiindexlquoteignore makes us +% ignore left quotes in the sort term. +{\catcode`\`=\active + \gdef\indexlquoteignore{\let`=\empty}} + \let\indexbackslash=0 %overridden during \printindex. \let\SETmarginindex=\relax % put index entries in margin (undocumented)? diff --git a/Master/tlpkg/bin/check-files-by-format b/Master/tlpkg/bin/check-files-by-format index aa4ec6725b4..389fd2bf932 100755 --- a/Master/tlpkg/bin/check-files-by-format +++ b/Master/tlpkg/bin/check-files-by-format @@ -176,6 +176,7 @@ my $tmpdir = File::Temp::tempdir(CLEANUP => 1); exit(main()); + sub main { my @files = get_file_list(); @@ -201,14 +202,18 @@ sub main sub get_file_list { my $tlpdb = TeXLive::TLPDB->new(root => $tlroot); - my @files; + my @files = (); for my $tlpname ($tlpdb->list_packages) { my $tlp = $tlpdb->get_package($tlpname); push(@files, $tlp->docfiles, $tlp->runfiles, $tlp->srcfiles); } + # ptex font files are in their own formats; don't bother checking, + # or adding individual entries to the exclude lists. + @files = grep ($_ !~ m!/ptex/!, @files); return @files; } + # return the value in exclude list associated to a file, or undef sub exclude_value { diff --git a/Master/tlpkg/tlpsrc/chktex.tlpsrc b/Master/tlpkg/tlpsrc/chktex.tlpsrc index 35811eb458b..e4999f2c3ec 100644 --- a/Master/tlpkg/tlpsrc/chktex.tlpsrc +++ b/Master/tlpkg/tlpsrc/chktex.tlpsrc @@ -6,4 +6,4 @@ binpattern f bin/${ARCH}/deweb docpattern f texmf/doc/man/man1/chktex.* docpattern f texmf/doc/man/man1/chkweb.* docpattern f texmf/doc/man/man1/deweb.* -docpattern d texmf doc/chktex +docpattern d texmf/doc/chktex |