diff options
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index 8bcd5cd9856..2c426ba3816 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,8 @@ +2012-09-19 Peter Breitenlohner <peb@mppmu.mpg.de> + + * texmfmp.c: Since normalize_quotes() is declared static, + the forward declaration should also be static. + 2012-09-11 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * texmfmp.c (maininit): On Windows, latex "\input" "a b c", for example, diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index d6944a1e711..c641e37b1b4 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -622,7 +622,7 @@ const char *ptexbanner = BANNER; #endif #ifdef WIN32 -string +static string normalize_quotes (const_string name, const_string mesg); #endif |