diff options
author | Werner Koch <[email protected]> | 2011-02-04 11:57:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2011-02-04 11:57:53 +0000 |
commit | b008274afdbe375b32a7e66dbd073e200f6f0587 (patch) | |
tree | 219e239d39cf06be3f03aa82fb572080ac163a15 /common/localename.c | |
parent | Let autogen.sh check the git config (diff) | |
download | gnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.tar.gz gnupg-b008274afdbe375b32a7e66dbd073e200f6f0587.zip |
Nuked almost all trailing white space.post-nuke-of-trailing-ws
We better do this once and for all instead of cluttering all future
commits with diffs of trailing white spaces. In the majority of cases
blank or single lines are affected and thus this change won't disturb
a git blame too much. For future commits the pre-commit scripts
checks that this won't happen again.
Diffstat (limited to 'common/localename.c')
-rw-r--r-- | common/localename.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/common/localename.c b/common/localename.c index 8f7774880..82fe51754 100644 --- a/common/localename.c +++ b/common/localename.c @@ -1,5 +1,5 @@ /* localename.c - Determine the current selected locale. - Copyright (C) 1995-1999, 2000-2003, 2007, + Copyright (C) 1995-1999, 2000-2003, 2007, 2008 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or @@ -17,7 +17,7 @@ */ /* Written by Ulrich Drepper <[email protected]>, 1995. */ /* Win32 code written by Tor Lillqvist <[email protected]>. */ -/* Modified for GpgOL use by Werner Koch <[email protected]>, 2005. */ +/* Modified for GpgOL use by Werner Koch <[email protected]>, 2005. */ /* Modified for GnuPG use by Werner Koch <[email protected]>, 2007 */ #ifdef HAVE_CONFIG_H @@ -68,7 +68,7 @@ do_nl_locale_name (int category, const char *categoryname) # if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL (void)categoryname; retval = setlocale (category, NULL); -# else +# else /* Setting of LC_ALL overwrites all other. */ retval = getenv ("LC_ALL"); if (retval == NULL || retval[0] == '\0') @@ -114,4 +114,3 @@ gnupg_messages_locale_name (void) return s; } - |