summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-06-06 14:16:39 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-06-06 15:33:24 -0700
commit6001e8721f232aa1f8b584d903edcea148b0ebc5 (patch)
tree9a3ee503c9f2c94983d0d051f75acd2bca28b9f3
parent44a6d871e2baec9724f131778887c834133a4dc5 (diff)
Remove #ifdef NO_I18N code branches
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xwininfo.c25
1 files changed, 2 insertions, 23 deletions
diff --git a/xwininfo.c b/xwininfo.c
index c8206c0..eb4407c 100644
--- a/xwininfo.c
+++ b/xwininfo.c
@@ -69,9 +69,7 @@ of the copyright holder.
#include <X11/Xatom.h>
#include <X11/Xos.h>
#include <X11/extensions/shape.h>
-#ifndef NO_I18N
#include <X11/Xlocale.h>
-#endif
#include <stdio.h>
#include <stdlib.h>
@@ -306,14 +304,8 @@ main(int argc, char **argv)
INIT_NAME;
-#ifndef NO_I18N
- {
- char *lc;
- lc = setlocale(LC_ALL, "");
- if(!lc)
- fprintf(stderr, "can not set locale properly\n");
- }
-#endif
+ if (!setlocale(LC_ALL, ""))
+ fprintf(stderr, "%s: can not set locale properly\n", program_name);
/* Open display, handle command line arguments */
Setup_Display_And_Screen(&argc, argv);
@@ -469,11 +461,7 @@ Lookup(int code, const binding *table)
static void
Display_Window_Id(Window window, Bool newline_wanted)
{
-#ifdef NO_I18N
- char *win_name;
-#else
XTextProperty tp;
-#endif
printf(window_id_format, window); /* print id # in hex/dec */
@@ -483,14 +471,6 @@ Display_Window_Id(Window window, Bool newline_wanted)
if (window == RootWindow(dpy, screen)) {
printf(" (the root window)");
}
-#ifdef NO_I18N
- if (!XFetchName(dpy, window, &win_name)) { /* Get window name if any */
- printf(" (has no name)");
- } else if (win_name) {
- printf(" \"%s\"", win_name);
- XFree(win_name);
- }
-#else
if (!XGetWMName(dpy, window, &tp)) { /* Get window name if any */
printf(" (has no name)");
} else if (tp.nitems > 0) {
@@ -509,7 +489,6 @@ Display_Window_Id(Window window, Bool newline_wanted)
}
printf("\"");
}
-#endif
else
printf(" (has no name)");
}