Codebase list texlive-bin / debian/2019.20190605.51237-2
Silence synctex warning when no synctex file is present (Closes: #908964) Norbert Preining 4 years ago
3 changed file(s) with 24 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
88 situations. (S. Hirata)
99 - xetex: lib/texmfmp.c: fix for \filedump of XeTeX
1010 - xetex: lib/texmfmp.c: fix for \creationdate (XeTeX only)
11
12 -- Norbert Preining <norbert@preining.info> Wed, 10 Jul 2019 09:43:02 +0900
11 * Silence synctex warning when no synctex file is present (Closes: #908964)
12
13 -- Norbert Preining <norbert@preining.info> Wed, 10 Jul 2019 09:59:23 +0900
1314
1415 texlive-bin (2019.20190605.51237-1) experimental; urgency=medium
1516
1212 dv2dt_man.patch
1313 gftodvi_man.patch
1414 # patches from upstream
15 silence-synctex-warning
1516 t4ht-correct-expansion
1617 dvisvgm-fix-missing-libs
1718 0001-cherry-picking-Fix-for-compiler-warnings.-S.-Hirata.patch
0 synctex warns on each and every file that doesn't have a respective synctex file,
1 remove the warning
2 code from https://gitlab.gnome.org/GNOME/evince/commit/678410e81d0c889f4db4e995ca451ed62b8a2eee
3 Debian bug #908964
4 ---
5 texk/web2c/synctexdir/synctex_parser.c | 3 ++-
6 1 file changed, 2 insertions(+), 1 deletion(-)
7
8 --- texlive-bin.orig/texk/web2c/synctexdir/synctex_parser.c
9 +++ texlive-bin/texk/web2c/synctexdir/synctex_parser.c
10 @@ -6023,7 +6023,8 @@ synctex_scanner_p synctex_scanner_new_wi
11 if ((scanner->reader = synctex_reader_init_with_output_file(scanner->reader, output, build_directory))) {
12 return parse? synctex_scanner_parse(scanner):scanner;
13 }
14 - _synctex_error("No file?");
15 + // don't warn if no file is present
16 + // _synctex_error("No file?");
17 return NULL;
18 }
19