diff options
Diffstat (limited to 'Build/source/texk/bibtex8')
-rw-r--r-- | Build/source/texk/bibtex8/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/bibtex8/utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/ChangeLog b/Build/source/texk/bibtex8/ChangeLog index 79ad11ce080..86ae827da7c 100644 --- a/Build/source/texk/bibtex8/ChangeLog +++ b/Build/source/texk/bibtex8/ChangeLog @@ -1,3 +1,8 @@ +2011-03-07 Peter Breitenlohner <peb@mppmu.mpg.de> + + * utils.c (setup_bound_variable): `program_invocation_name' has + been renamed into `kpse_invocation_name'. + 2010-05-03 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * bibtex.h: fix a bug in the macro BIB_XRETALLOC_STRING. diff --git a/Build/source/texk/bibtex8/utils.c b/Build/source/texk/bibtex8/utils.c index 4f4fff105c4..70f85cd9c14 100644 --- a/Build/source/texk/bibtex8/utils.c +++ b/Build/source/texk/bibtex8/utils.c @@ -1233,7 +1233,7 @@ static void setup_bound_variable (Integer_T *var, const char *name, { #ifdef KPATHSEA char *expansion = kpse_var_value (name); - const char *me = program_invocation_name; + const char *me = kpse_invocation_name; const char *src = " or texmf.cnf"; #else char *expansion = getenv (name); |