diff options
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/mft.ch | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index c8cf1362498..459c5f02e11 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,8 @@ +2011-07-30 Peter Breitenlohner <peb@mppmu.mpg.de> + + * mft.ch (parsearguments): Allow find_suffix() to return a + const string. + 2011-07-11 Peter Breitenlohner <peb@mppmu.mpg.de> * configure.ac: No need to test for PDFDoc::getPDFMajorVersion diff --git a/Build/source/texk/web2c/mft.ch b/Build/source/texk/web2c/mft.ch index b8c53a0a377..70f3a7016ba 100644 --- a/Build/source/texk/web2c/mft.ch +++ b/Build/source/texk/web2c/mft.ch @@ -1078,7 +1078,7 @@ var @!long_options: array[0..n_options] of getopt_struct; @!getopt_return_val: integer; @!option_index: c_int_type; @!current_option: 0..n_options; - @!suffix: c_string; + @!suffix: const_c_string; begin @<Initialize the option variables@>; @<Define the option table@>; |