summaryrefslogtreecommitdiff
path: root/Build/source/texk/tex4htk
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-06-05 23:45:15 +0000
committerKarl Berry <karl@freefriends.org>2016-06-05 23:45:15 +0000
commit0ed607f5f6b02df0fc61aedf914ac23aea3e938d (patch)
tree119a7f31b28419748d4003a447f4803696fbdda7 /Build/source/texk/tex4htk
parenteb07fbd21de117e774c4ebd47470334295e11d46 (diff)
NULL rather than FALSE (https://sourceforge.net/p/miktex/bugs/2488), from tex4ht r166
git-svn-id: svn://tug.org/texlive/trunk@41292 c570f23f-e606-0410-a88d-b1316a301751
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;
}