diff options
author | Werner Koch <[email protected]> | 2004-07-27 15:12:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-07-27 15:12:00 +0000 |
commit | 5d4fb5734727e493fa8119f0d2d0f21ebc7452a7 (patch) | |
tree | a2f907826fed2c350c048db21fc0c8d8e2850fc2 /intl/log.c | |
parent | * keylist.c (list_keyblock_print): Always use the new listing format where (diff) | |
download | gnupg-5d4fb5734727e493fa8119f0d2d0f21ebc7452a7.tar.gz gnupg-5d4fb5734727e493fa8119f0d2d0f21ebc7452a7.zip |
* configure.ac (AM_GNU_GETTEXT_VERSION): New.
(min_automake_version): New.
* LINGUAS: Added all languages we supported in 1.2.5.
Copied all po files from 1.2.5.
* autogen.sh: Updated to the modern version, grepping the required
tool versions from configure.ac.
Diffstat (limited to 'intl/log.c')
-rw-r--r-- | intl/log.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/intl/log.c b/intl/log.c index 9c84791b9..cb6076e80 100644 --- a/intl/log.c +++ b/intl/log.c @@ -28,9 +28,7 @@ /* Print an ASCII string with quotes and escape sequences where needed. */ static void -print_escaped (stream, str) - FILE *stream; - const char *str; +print_escaped (FILE *stream, const char *str) { putc ('"', stream); for (; *str != '\0'; str++) @@ -52,12 +50,8 @@ print_escaped (stream, str) /* Add to the log file an entry denoting a failed translation. */ void -_nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural) - const char *logfilename; - const char *domainname; - const char *msgid1; - const char *msgid2; - int plural; +_nl_log_untranslated (const char *logfilename, const char *domainname, + const char *msgid1, const char *msgid2, int plural) { static char *last_logfilename = NULL; static FILE *last_logfile = NULL; |