aboutsummaryrefslogtreecommitdiffstats
path: root/util/simple-gettext.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-05-24 16:53:14 +0000
committerDavid Shaw <[email protected]>2003-05-24 16:53:14 +0000
commitc84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72 (patch)
treedc24a02a957c942f43de558c2424dc897d7f1345 /util/simple-gettext.c
parent* cipher.h, i18n.h, iobuf.h, memory.h, mpi.h, types.h, util.h: Edit all (diff)
downloadgnupg-c84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72.tar.gz
gnupg-c84fdfbe620ed3e9d4d3f6c03b3fcea8a1685c72.zip
* argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c,
simple-gettext.c, errors.c, http.c, memory.c, secmem.c, ttyio.c: Edit all preprocessor instructions to remove whitespace before the '#'. This is not required by C89, but there are some compilers out there that don't like it.
Diffstat (limited to '')
-rw-r--r--util/simple-gettext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/simple-gettext.c b/util/simple-gettext.c
index b5ee446cb..5d29804f1 100644
--- a/util/simple-gettext.c
+++ b/util/simple-gettext.c
@@ -235,11 +235,11 @@ set_gettext_file( const char *filename )
if( filename && *filename ) {
if( filename[0] == '/'
- #ifdef HAVE_DRIVE_LETTERS
+#ifdef HAVE_DRIVE_LETTERS
|| ( isalpha(filename[0])
&& filename[1] == ':'
&& (filename[2] == '/' || filename[2] == '\\') )
- #endif
+#endif
) {
/* absolute path - use it as is */
domain = load_domain( filename );