summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/synctexdir
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-03-04 19:00:28 +0000
committerKarl Berry <karl@freefriends.org>2021-03-04 19:00:28 +0000
commit62c71c219fee02dbdf435088deeff0f2fc55178e (patch)
tree3ace4b05df90777938c50288fa321b747038edf0 /Build/source/texk/web2c/synctexdir
parent9becaffdc29cac14ead6bd451100e7d1bf627a1f (diff)
fixes from debian, tldistro 3 Mar 2021 07:59:41
git-svn-id: svn://tug.org/texlive/trunk@58117 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/synctexdir')
-rw-r--r--Build/source/texk/web2c/synctexdir/ChangeLog9
-rw-r--r--Build/source/texk/web2c/synctexdir/synctex_parser.c3
2 files changed, 10 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/synctexdir/ChangeLog b/Build/source/texk/web2c/synctexdir/ChangeLog
index fd74522647e..c140bba63ba 100644
--- a/Build/source/texk/web2c/synctexdir/ChangeLog
+++ b/Build/source/texk/web2c/synctexdir/ChangeLog
@@ -1,3 +1,10 @@
+2021-03-04 Karl Berry <karl@freefriends.org>
+
+ * synctex_scanner_new_with_output_file: don't warn to terminal
+ with _synctex_error when a file is missing.
+ code from https://gitlab.gnome.org/GNOME/evince/commit/678410e81d0c889f4db4e995ca451ed62b8a2eee
+ Debian bug #908964
+
2019-10-10 Hironori Kitagawa <h_kitagawa2001@yahoo.co.jp>
* synctex-p-rec.ch0, synctex-ep-rec.ch0: Fix \meaning\synctex
@@ -6,7 +13,7 @@
2019-08-07 Akira Kakuto <kakuto@w32tex.org>
- * synctex.c: Improve support of non-ascii path names
+ * synctex.c: Improve support of non-ASCII path names
(Windows only).
2018-10-25 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
diff --git a/Build/source/texk/web2c/synctexdir/synctex_parser.c b/Build/source/texk/web2c/synctexdir/synctex_parser.c
index 7fcbe0ce3a9..45124ea3bff 100644
--- a/Build/source/texk/web2c/synctexdir/synctex_parser.c
+++ b/Build/source/texk/web2c/synctexdir/synctex_parser.c
@@ -6009,7 +6009,8 @@ synctex_scanner_p synctex_scanner_new_with_output_file(const char * output, cons
if ((scanner->reader = synctex_reader_init_with_output_file(scanner->reader, output, build_directory))) {
return parse? synctex_scanner_parse(scanner):scanner;
}
- _synctex_error("No file?");
+ // don't warn to terminal if no file is present, this is a library.
+ // _synctex_error("No file?");
return NULL;
}