texlive[59662] page range fix and tests

commits+karl at tug.org commits+karl at tug.org
Mon Jun 21 00:56:11 CEST 2021


Revision: 59662
          http://tug.org/svn/texlive?view=revision&revision=59662
Author:   karl
Date:     2021-06-21 00:56:11 +0200 (Mon, 21 Jun 2021)
Log Message:
-----------
page range fix and tests

Modified Paths:
--------------
    trunk/Build/source/texk/bibtex-x/ChangeLog
    trunk/Build/source/texk/bibtex-x/Makefile.am
    trunk/Build/source/texk/bibtex-x/Makefile.in
    trunk/Build/source/texk/bibtex-x/bibtex-4.c
    trunk/Build/source/texk/bibtex-x/configure
    trunk/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test
    trunk/Build/source/texk/bibtex-x/tests/yannis.bib

Added Paths:
-----------
    trunk/Build/source/texk/bibtex-x/tests/bibtexu-basic.test
    trunk/Build/source/texk/bibtex-x/tests/bibtexu-range.test
    trunk/Build/source/texk/bibtex-x/tests/ubasic.aux
    trunk/Build/source/texk/bibtex-x/tests/ubasic.bbl
    trunk/Build/source/texk/bibtex-x/tests/ubasic.bib
    trunk/Build/source/texk/bibtex-x/tests/ubasic.tex
    trunk/Build/source/texk/bibtex-x/tests/urange.aux
    trunk/Build/source/texk/bibtex-x/tests/urange.bbl
    trunk/Build/source/texk/bibtex-x/tests/urange.bib
    trunk/Build/source/texk/bibtex-x/tests/urange.tex

Property Changed:
----------------
    trunk/Build/source/texk/bibtex-x/tests/yannis.bib

Modified: trunk/Build/source/texk/bibtex-x/ChangeLog
===================================================================
--- trunk/Build/source/texk/bibtex-x/ChangeLog	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/ChangeLog	2021-06-20 22:56:11 UTC (rev 59662)
@@ -1,3 +1,19 @@
+2021-06-20  Karl Berry  <karl at freefriends.org>
+
+	* Makefile.am (bibtexu_tests): add tests/bibtexu-{basic,range}.test.
+	(EXTRA_DIST, DISTCLEANFILES): likewise.
+	* tests/bibtexu-{basic,range}.test,
+	* tests/u{basic,range}.{aux,bbl,bib,tex}: new files from Dmitry.
+
+	* tests/bibtexu-yannis.test: reenable (probably failed due to lack
+	of pthread?), use same test template.
+	* tests/yannis.bib: credit Yannis.
+
+2021-06-20  Dmitry Zheleznyakov <dmitry.zhelezniakov at gmail.com>
+
+	* bibtex-4.c (x_substring, web section 438): adjust pop_lit1
+	before icu_fromUChars calls, to avoid crash on page ranges.
+
 2021-06-19  Karl Berry  <karl at freefriends.org>
 
 	* configure.ac [enable_bibtexu]: also check for -lpthread.

Modified: trunk/Build/source/texk/bibtex-x/Makefile.am
===================================================================
--- trunk/Build/source/texk/bibtex-x/Makefile.am	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/Makefile.am	2021-06-20 22:56:11 UTC (rev 59662)
@@ -76,7 +76,8 @@
 ## Tests.
 ##
 bibtex8_tests = tests/bibtex8.test tests/bibtex8-mem.test tests/sort.test
-bibtexu_tests = tests/bibtexu.test tests/bibtexu-yannis.test
+bibtexu_tests = tests/bibtexu.test tests/bibtexu-basic.test \
+                tests/bibtexu-range.test tests/bibtexu-yannis.test
 
 TESTS =
 if BIBTEX8
@@ -86,7 +87,8 @@
 if BIBTEXU
 TESTS += $(bibtexu_tests)
 endif BIBTEXU
-tests/bibtexu.log tests/bibtexu-yannis.log: bibtexu$(EXEEXT)
+tests/bibtexu.log tests/bibtexu-basic.log tests/bibtexu-range.log \
+  tests/bibtexu-yannis.log: bibtexu$(EXEEXT)
 
 EXTRA_DIST = $(bibtex8_tests) $(bibtexu_tests)
 DISTCLEANFILES =
@@ -99,8 +101,18 @@
 	tests/sort1.csf tests/sort2.csf tests/sort3.csf \
 	tests/testdata.bib tests/teststyle.bst
 DISTCLEANFILES += tests/xsort.aux tests/xsort.bbl tests/xsort.blg
+##
 ## tests/bibtex8-mem.test
 DISTCLEANFILES += tests/memtest.bib tests/memtest?.*
+##
+## tests/bibtexu-basic.test
+EXTRA_DIST += tests/ubasic.aux tests/ubasic.bbl tests/ubasic.bib
+DISTCLEANFILES += tests/xubasic.aux tests/xubasic.bbl tests/xubasic.blg
+##
+## tests/bibtexu-range.test
+EXTRA_DIST += tests/urange.aux tests/urange.bbl tests/urange.bib
+DISTCLEANFILES += tests/xurange.aux tests/xurange.bbl tests/xurange.blg
+##
 ## tests/bibtexu-yannis.test
 EXTRA_DIST += tests/yannis.aux tests/yannis.bbl tests/yannis.bib
 DISTCLEANFILES += tests/xyannis.aux tests/xyannis.bbl tests/xyannis.blg

Modified: trunk/Build/source/texk/bibtex-x/Makefile.in
===================================================================
--- trunk/Build/source/texk/bibtex-x/Makefile.in	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/Makefile.in	2021-06-20 22:56:11 UTC (rev 59662)
@@ -653,18 +653,24 @@
 	file_id.diz
 
 bibtex8_tests = tests/bibtex8.test tests/bibtex8-mem.test tests/sort.test
-bibtexu_tests = tests/bibtexu.test tests/bibtexu-yannis.test
+bibtexu_tests = tests/bibtexu.test tests/bibtexu-basic.test \
+                tests/bibtexu-range.test tests/bibtexu-yannis.test
+
 TESTS = $(am__append_3) $(am__append_4)
 EXTRA_DIST = $(bibtex8_tests) $(bibtexu_tests) tests/sort.aux \
 	tests/sort1.bbl tests/sort2.bbl tests/sort3.bbl \
 	tests/sort1.csf tests/sort2.csf tests/sort3.csf \
-	tests/testdata.bib tests/teststyle.bst tests/yannis.aux \
+	tests/testdata.bib tests/teststyle.bst tests/ubasic.aux \
+	tests/ubasic.bbl tests/ubasic.bib tests/urange.aux \
+	tests/urange.bbl tests/urange.bib tests/yannis.aux \
 	tests/yannis.bbl tests/yannis.bib bt371csf.zip dos-dj.mak \
 	dos-emx.mak os2.mak unix.mak csf/00readme.txt csf/COPYING \
 	csf/HISTORY csf/file_id.diz
 DISTCLEANFILES = tests/xexampl.aux tests/xexampl.bbl tests/xexampl.blg \
 	tests/xsort.aux tests/xsort.bbl tests/xsort.blg \
-	tests/memtest.bib tests/memtest?.* tests/xyannis.aux \
+	tests/memtest.bib tests/memtest?.* tests/xubasic.aux \
+	tests/xubasic.bbl tests/xubasic.blg tests/xurange.aux \
+	tests/xurange.bbl tests/xurange.blg tests/xyannis.aux \
 	tests/xyannis.bbl tests/xyannis.blg
 all: config.h
 	$(MAKE) $(AM_MAKEFLAGS) all-am
@@ -1686,7 +1692,8 @@
 @KPATHSEA_RULE@
 @ICU_RULE@
 tests/bibtex8.log tests/bibtex8-mem.log tests/sort.log: bibtex8$(EXEEXT)
-tests/bibtexu.log tests/bibtexu-yannis.log: bibtexu$(EXEEXT)
+tests/bibtexu.log tests/bibtexu-basic.log tests/bibtexu-range.log \
+  tests/bibtexu-yannis.log: bibtexu$(EXEEXT)
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.

Modified: trunk/Build/source/texk/bibtex-x/bibtex-4.c
===================================================================
--- trunk/Build/source/texk/bibtex-x/bibtex-4.c	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/bibtex-4.c	2021-06-20 22:56:11 UTC (rev 59662)
@@ -2061,10 +2061,10 @@
       BEGIN
 #ifdef UTF_8
         unsigned char frUch1[BUF_SIZE+1];
+        unsigned char frUch2[BUF_SIZE+1];
         int32_t frUchCap = BUF_SIZE + 1;
-        int32_t lenfrUch = icu_fromUChars(frUch1, frUchCap, &uchs[pop_lit2-1], pop_lit1);
-        unsigned char frUch2[BUF_SIZE+1];
-        int32_t ptrfrUch = icu_fromUChars(frUch2, frUchCap, uchs, pop_lit2-1);
+        int32_t lenfrUch;
+        int32_t ptrfrUch;
 #endif
         if (pop_lit1 > (sp_length - (pop_lit2 - 1)))
         BEGIN
@@ -2071,7 +2071,6 @@
           pop_lit1 = sp_length - (pop_lit2 - 1);
         END
 #ifdef UTF_8
-        frUchCap = BUF_SIZE + 1;
         lenfrUch = icu_fromUChars(frUch1, frUchCap, &uchs[pop_lit2-1], pop_lit1);
         ptrfrUch = icu_fromUChars(frUch2, frUchCap, uchs, pop_lit2-1);
         sp_ptr = str_start[pop_lit3] + ptrfrUch;
@@ -2095,10 +2094,10 @@
       BEGIN
 #ifdef UTF_8
         unsigned char  frUch1[BUF_SIZE+1];
+        unsigned char  frUch2[BUF_SIZE+1];
         int32_t frUchCap = BUF_SIZE + 1;
-        int32_t lenfrUch = icu_fromUChars(frUch1, frUchCap, &uchs[ulen - (pop_lit2-1) - pop_lit1], pop_lit1);
-        unsigned char  frUch2[BUF_SIZE+1];
-        int32_t ptrfrUch = icu_fromUChars(frUch2, frUchCap, &uchs[ulen - pop_lit2], pop_lit2-1);
+        int32_t lenfrUch;
+        int32_t ptrfrUch;
 #endif
         pop_lit2 = -pop_lit2;
         if (pop_lit1 > (Integer_T) (sp_length - (pop_lit2 - 1)))
@@ -2106,7 +2105,6 @@
           pop_lit1 = sp_length - (pop_lit2 - 1);
         END
 #ifdef UTF_8
-        frUchCap = BUF_SIZE + 1;
         lenfrUch = icu_fromUChars(frUch1, frUchCap, &uchs[ulen - (pop_lit2-1) - pop_lit1], pop_lit1);
         ptrfrUch = icu_fromUChars(frUch2, frUchCap, &uchs[ulen - pop_lit2], pop_lit2-1);
         sp_ptr = str_start[pop_lit3] + ptrfrUch;

Modified: trunk/Build/source/texk/bibtex-x/configure
===================================================================
--- trunk/Build/source/texk/bibtex-x/configure	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/configure	2021-06-20 22:56:11 UTC (rev 59662)
@@ -17648,9 +17648,7 @@
 
 
 if test "x$enable_bibtexu" != xno; then
-  # As of ICU 65.1, ICU requires -lpthread on x86_64-linux and, most
-  # likely, on other platforms. See upmendex/configure.ac for more info.
-kpse_save_CPPFLAGS=$CPPFLAGS
+    kpse_save_CPPFLAGS=$CPPFLAGS
 kpse_save_LIBS=$LIBS
 
 ##tldbg _KPSE_INIT: Initialize TL infrastructure.

Added: trunk/Build/source/texk/bibtex-x/tests/bibtexu-basic.test
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/bibtexu-basic.test	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/bibtexu-basic.test	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,25 @@
+#! /bin/sh -vx
+# $Id: bibtexu-yannis.test 51452 2019-06-25 01:28:47Z karl $
+# Public domain. Originally written by Karl Berry, 2021.
+
+test -d tests || mkdir -p tests
+
+testname=ubasic
+# due to lack of libpthread:
+#   terminate called after throwing an instance of 'std::system_error'
+#    what():  Unknown error -1
+#   Aborted
+
+cp $srcdir/tests/$testname.aux tests/x$testname.aux || exit 1
+
+TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF
+BSTINPUTS=$srcdir/../tests/texmf; export BSTINPUTS
+BIBINPUTS=$srcdir/tests; export BIBINPUTS
+
+if ./bibtexu -t -d all tests/x$testname; then :; else
+  echo "*** bibtexu failed, tests/x$testname.blg is:" >&2
+  cat tests/x$testname.blg >&2
+  exit 1
+fi
+
+diff $srcdir/tests/$testname.bbl tests/x$testname.bbl || exit 1


Property changes on: trunk/Build/source/texk/bibtex-x/tests/bibtexu-basic.test
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/bibtexu-range.test
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/bibtexu-range.test	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/bibtexu-range.test	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,22 @@
+#! /bin/sh -vx
+# $Id$
+# Public domain. Originally written by Karl Berry, 2021.
+
+test -d tests || mkdir -p tests
+
+testname=urange
+# Segmentation fault
+
+cp $srcdir/tests/$testname.aux tests/x$testname.aux
+
+TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF
+BSTINPUTS=$srcdir/../tests/texmf; export BSTINPUTS
+BIBINPUTS=$srcdir/tests; export BIBINPUTS
+
+if ./bibtexu -t -d all tests/x$testname; then :; else
+  echo "*** bibtexu failed, tests/x$testname.blg is:" >&2
+  cat tests/x$testname.blg >&2
+  exit 1
+fi
+
+diff $srcdir/tests/$testname.bbl tests/x$testname.bbl || exit 1


Property changes on: trunk/Build/source/texk/bibtex-x/tests/bibtexu-range.test
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Modified: trunk/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/tests/bibtexu-yannis.test	2021-06-20 22:56:11 UTC (rev 59662)
@@ -1,24 +1,23 @@
 #! /bin/sh -vx
 # $Id$
-# Copyright 2019 Karl Berry <tex-live at tug.org>
+# Copyright 2019-2021 Karl Berry <tex-live at tug.org>
 # You may freely use, modify and/or distribute this file.
+# Some actual sorting needed.
 
-# Test file prepared by Yannis Haralambous in 2009.
+test -d tests || mkdir -p tests
 
-exit 0 # temp until fixed
+testname=yannis
 
-test -d tests || mkdir -p tests
+cp $srcdir/tests/$testname.aux tests/x$testname.aux || exit 1
 
-cp $srcdir/tests/yannis.aux tests/xyannis.aux
-
 TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF
 BSTINPUTS=$srcdir/../web2c/tests; export BSTINPUTS
 BIBINPUTS=$srcdir/tests; export BIBINPUTS
-if ./bibtexu -l fr -o fr -t -d all tests/xyannis; then :; else
-  echo "bibtexu failed, tests/xyannis.blg is:" >&2
-  cat tests/xyannis.blg >&2
+
+if ./bibtexu -t -d all -l fr -o fr tests/x$testname; then :; else
+  echo "*** bibtexu failed, tests/x$testname.blg is:" >&2
+  cat tests/x$testname.blg >&2
   exit 1
 fi
 
-diff $srcdir/tests/yannis.bbl tests/xyannis.bbl || exit 1
-
+diff $srcdir/tests/$testname.bbl tests/x$testname.bbl || exit 1

Added: trunk/Build/source/texk/bibtex-x/tests/ubasic.aux
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/ubasic.aux	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/ubasic.aux	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,6 @@
+\relax 
+\citation{li2018fuzzing}
+\bibstyle{plain}
+\bibdata{ubasic}
+\@writefile{toc}{\contentsline {section}{\numberline {1}Test}{1}{}\protected at file@percent }
+\gdef \@abspage at last{1}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/ubasic.aux
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/ubasic.bbl
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/ubasic.bbl	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/ubasic.bbl	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,8 @@
+\begin{thebibliography}{1}
+
+\bibitem{li2018fuzzing}
+Jun Li, Bodong Zhao, and Chao Zhang.
+\newblock Fuzzing: a survey.
+\newblock {\em Cybersecurity}, 1(1):6, 2018.
+
+\end{thebibliography}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/ubasic.bbl
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/ubasic.bib
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/ubasic.bib	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/ubasic.bib	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,13 @@
+% $Id$
+% Public domain. Submitted by Dmitry Zheleznyakov, 2021.
+
+ at article{li2018fuzzing,
+  title={Fuzzing: a survey},
+  author={Li, Jun and Zhao, Bodong and Zhang, Chao},
+  journal={Cybersecurity},
+  volume={1},
+  number={1},
+  pages={6},
+  year={2018},
+  publisher={Springer}
+}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/ubasic.bib
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/ubasic.tex
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/ubasic.tex	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/ubasic.tex	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,15 @@
+% $Id$
+% Public domain. Submitted by Dmitry Zheleznyakov, 2021.
+
+\documentclass{article}
+\usepackage[utf8]{inputenc}
+
+\begin{document}
+
+\section{Test}
+Test~\cite{li2018fuzzing}.
+
+\bibliographystyle{plain}
+\bibliography{ubasic}
+
+\end{document}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/ubasic.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/urange.aux
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/urange.aux	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/urange.aux	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,6 @@
+\relax 
+\citation{li2018range}
+\bibstyle{plain}
+\bibdata{urange}
+\@writefile{toc}{\contentsline {section}{\numberline {1}Test}{1}{}\protected at file@percent }
+\gdef \@abspage at last{1}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/urange.aux
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/urange.bbl
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/urange.bbl	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/urange.bbl	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,8 @@
+\begin{thebibliography}{1}
+
+\bibitem{li2018range}
+Jun Li, Bodong Zhao, and Chao Zhang.
+\newblock Fuzzing: a survey.
+\newblock {\em Cybersecurity}, 1(1):3--6, 2018.
+
+\end{thebibliography}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/urange.bbl
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/urange.bib
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/urange.bib	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/urange.bib	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,13 @@
+% $Id$
+% Public domain. Submitted by Dmitry Zheleznyakov, 2021.
+
+ at article{li2018range,
+  title={Fuzzing: a survey},
+  author={Li, Jun and Zhao, Bodong and Zhang, Chao},
+  journal={Cybersecurity},
+  volume={1},
+  number={1},
+  pages={3--6},
+  year={2018},
+  publisher={Springer}
+}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/urange.bib
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Added: trunk/Build/source/texk/bibtex-x/tests/urange.tex
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/urange.tex	                        (rev 0)
+++ trunk/Build/source/texk/bibtex-x/tests/urange.tex	2021-06-20 22:56:11 UTC (rev 59662)
@@ -0,0 +1,15 @@
+% $Id$
+% Public domain. Submitted by Dmitry Zheleznyakov, 2021.
+
+\documentclass{article}
+\usepackage[utf8]{inputenc}
+
+\begin{document}
+
+\section{Test}
+Test~\cite{li2018range}.
+
+\bibliographystyle{plain}
+\bibliography{urange}
+
+\end{document}


Property changes on: trunk/Build/source/texk/bibtex-x/tests/urange.tex
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property
Modified: trunk/Build/source/texk/bibtex-x/tests/yannis.bib
===================================================================
--- trunk/Build/source/texk/bibtex-x/tests/yannis.bib	2021-06-20 22:42:23 UTC (rev 59661)
+++ trunk/Build/source/texk/bibtex-x/tests/yannis.bib	2021-06-20 22:56:11 UTC (rev 59662)
@@ -1,3 +1,5 @@
+% $Id$
+% Public domain. Submitted by Yannis Haralambous, 2009.
 
 @book{cle1,
 	Author = {Διογένης},


Property changes on: trunk/Build/source/texk/bibtex-x/tests/yannis.bib
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Date Author Id Revision
\ No newline at end of property


More information about the tex-live-commits mailing list.