Code

options: removed deprecated options
authorMax Kellermann <max@duempel.org>
Fri, 7 Nov 2008 07:28:53 +0000 (08:28 +0100)
committerMax Kellermann <max@duempel.org>
Fri, 7 Nov 2008 07:28:53 +0000 (08:28 +0100)
"reconnect" is always enabled.  "debug" code has been removed.

src/options.c
src/options.h

index 8f24e107a652e00a958b208c0042df2f4ff90952..1b745bb76467854c7ebc488d13797d13b228d9ad 100644 (file)
@@ -65,7 +65,6 @@ static const arg_opt_t option_table[] = {
        { 'S', "no-splash", NULL, "Don't show the splash screen" },
 #ifndef NDEBUG
        { 'K', "dump-keys", NULL, "Dump key bindings to stdout" },
-       { 'D', "debug", NULL, "Enable debug output on stderr" },
 #endif
 };
 
@@ -187,7 +186,7 @@ handle_option(int c, const char *arg)
                options.enable_mouse = false;
                break;
        case 'e': /* --exit */
-               options.reconnect = false;
+               /* deprecated */
                break;
        case 'p': /* --port */
                options.port = atoi(arg);
@@ -221,9 +220,6 @@ handle_option(int c, const char *arg)
                write_key_bindings(stdout, KEYDEF_WRITE_ALL | KEYDEF_COMMENT_ALL);
                exit(EXIT_SUCCESS);
                break;
-       case 'D': /* --debug */
-               options.debug = true;
-               break;
 #endif
        default:
                fprintf(stderr,"Unknown Option %c = %s\n", c, arg);
@@ -341,7 +337,6 @@ options_init(void)
        /* default option values */
        options.list_format = g_strdup(DEFAULT_LIST_FORMAT);
        options.status_format = g_strdup(DEFAULT_STATUS_FORMAT);
-       options.reconnect = true;
        options.find_wrap = true;
        options.wide_cursor = true;
        options.welcome_screen_list = true;
index 0f9fa13c1105854a0436bfc5a5de6cfe783f0c68..791ec2f09c9faa3971ebf8ee0bcaf9135f805505 100644 (file)
@@ -26,8 +26,6 @@ typedef struct {
        int hide_cursor;
        int seek_time;
        int lyrics_timeout;
-       bool reconnect;
-       bool debug;
        bool find_wrap;
        bool find_show_last_pattern;
        bool list_wrap;