summaryrefslogtreecommitdiff
path: root/Build/source/texk/tex4htk
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/tex4htk')
-rw-r--r--Build/source/texk/tex4htk/ChangeLog6
-rw-r--r--Build/source/texk/tex4htk/tex4ht.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/Build/source/texk/tex4htk/ChangeLog b/Build/source/texk/tex4htk/ChangeLog
index d1c7abaf26e..b87ce8abef8 100644
--- a/Build/source/texk/tex4htk/ChangeLog
+++ b/Build/source/texk/tex4htk/ChangeLog
@@ -1,3 +1,9 @@
+2016-05-22 Karl Berry <karl@freefriends.org>
+
+ * tex4ht-c.tex (search_file): return NULL rather than FALSE
+ to placate MiKTeX. Report from Mojca,
+ https://sourceforge.net/p/miktex/bugs/2488.
+
2015-02-16 Peter Breitenlohner <peb@mppmu.mpg.de>
* Makefile.am: Use the fragment ../../am/dist_hook.am.
diff --git a/Build/source/texk/tex4htk/tex4ht.c b/Build/source/texk/tex4htk/tex4ht.c
index 325c0b64dc0..154148ddab7 100644
--- a/Build/source/texk/tex4htk/tex4ht.c
+++ b/Build/source/texk/tex4htk/tex4ht.c
@@ -1,6 +1,6 @@
/* tex4ht.c (2012-07-25-19:36), generated from tex4ht-c.tex
- Copyright (C) 2009-2012 TeX Users Group
+ Copyright (C) 2009-2016 TeX Users Group
Copyright (C) 1996-2009 Eitan M. Gurari
%
@@ -3987,7 +3987,7 @@ if( (file = f_open(str, flags)) != NULL ){
str[i] = '\0';
return subs? search_file_ext( name, str, flags):
- FALSE;
+ NULL;
}