diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-09-19 10:25:21 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-09-19 10:25:21 +0000 |
commit | 8b88c4b87ee3aa920bc9a93d85a4e13ce4afd9c5 (patch) | |
tree | 8085221e95881c19bff9fc988aa6e96521d77715 /Build/source/texk/web2c | |
parent | b68dc71dabde43ecc5340c3371b35a52b3c3108b (diff) |
web2c/lib: normalize_quotes() is static
git-svn-id: svn://tug.org/texlive/trunk@27736 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c')
-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 |