aboutsummaryrefslogtreecommitdiff
path: root/gdb/main.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-01-17 22:15:18 +0000
committerAndrew Cagney <cagney@redhat.com>2002-01-17 22:15:18 +0000
commit8926118ce27a8c21cd8d8600bb068454ec58baf3 (patch)
tree11dff4edfcc5ae3afb6f2559aab5616b2d075006 /gdb/main.c
parentdb728ff7cd9b6832a77ae09b75b94352b1820471 (diff)
downloadfsf-binutils-gdb-8926118ce27a8c21cd8d8600bb068454ec58baf3.zip
fsf-binutils-gdb-8926118ce27a8c21cd8d8600bb068454ec58baf3.tar.gz
fsf-binutils-gdb-8926118ce27a8c21cd8d8600bb068454ec58baf3.tar.bz2
Remove else clause to #if UI_OUT.
Diffstat (limited to 'gdb/main.c')
-rw-r--r--gdb/main.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gdb/main.c b/gdb/main.c
index 9b7a5f5..7ef8647 100644
--- a/gdb/main.c
+++ b/gdb/main.c
@@ -51,10 +51,8 @@ int display_space;
processes UI events asynchronously. */
int event_loop_p = 1;
-#ifdef UI_OUT
/* Has an interpreter been specified and if so, which. */
char *interpreter_p;
-#endif
/* Whether this is the command line version or not */
int tui_version = 0;
@@ -250,11 +248,9 @@ captured_main (void *data)
{"enable-external-editor", no_argument, 0, 'y'},
{"editor-command", required_argument, 0, 'w'},
#endif
-#ifdef UI_OUT
{"ui", required_argument, 0, 'i'},
{"interpreter", required_argument, 0, 'i'},
{"i", required_argument, 0, 'i'},
-#endif
{"directory", required_argument, 0, 'd'},
{"d", required_argument, 0, 'd'},
{"cd", required_argument, 0, 11},
@@ -357,11 +353,9 @@ extern int gdbtk_test (char *);
break;
}
#endif /* GDBTK */
-#ifdef UI_OUT
case 'i':
interpreter_p = optarg;
break;
-#endif
case 'd':
dirarg[ndir++] = optarg;
if (ndir >= dirsize)