diff options
author | Egbert Eich <eich@suse.de> | 2004-04-23 19:54:30 +0000 |
---|---|---|
committer | Egbert Eich <eich@suse.de> | 2004-04-23 19:54:30 +0000 |
commit | 2fb588620030ad393f8500d60e16144d59e4effe (patch) | |
tree | 07262cbe15a40e5aeae54f62751260f83243ab79 /hw/xwin/InitOutput.c | |
parent | 0664db19bf37f9dd69cca6adff4e238e310c3092 (diff) |
Merging XORG-CURRENT into trunk
Diffstat (limited to 'hw/xwin/InitOutput.c')
-rw-r--r-- | hw/xwin/InitOutput.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c index 3202ae8d9..68910be1a 100644 --- a/hw/xwin/InitOutput.c +++ b/hw/xwin/InitOutput.c @@ -26,7 +26,7 @@ other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/programs/Xserver/hw/xwin/InitOutput.c,v 1.35 2003/10/08 11:13:02 eich Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xwin/InitOutput.c,v 1.34 2003/10/02 13:30:09 eich Exp $ */ #include "win.h" #include "winconfig.h" @@ -312,7 +312,7 @@ ddxUseMsg (void) ErrorF ("-lesspointer\n" "\tHide the windows mouse pointer when it is over an inactive\n" - "\tXFree86 window. This prevents ghost cursors appearing where\n" + "\tX window. This prevents ghost cursors appearing where\n" "\tthe Windows cursor is drawn overtop of the X cursor\n"); ErrorF ("-nodecoration\n" @@ -361,7 +361,7 @@ ddxUseMsg (void) ErrorF ("-[no]winkill\n" "\tAlt+F4 exits the X Server.\n"); - ErrorF ("-xf86config\n" + ErrorF ("-config\n" "\tSpecify a configuration file.\n"); ErrorF ("-keyboard\n" @@ -394,6 +394,11 @@ ddxUseMsg (void) /* Compare the current option with the string. */ #define IS_OPTION(name) (strcmp (argv[i], name) == 0) +/* ddxInitGlobals - called by |InitGlobals| from os/util.c */ +void ddxInitGlobals(void) +{ +} + int ddxProcessArgument (int argc, char *argv[], int i) { @@ -1201,9 +1206,9 @@ ddxProcessArgument (int argc, char *argv[], int i) } /* - * Look for the '-xf86config' argument + * Look for the '-config' argument. Accept -xf86config as an alias */ - if (IS_OPTION ("-xf86config")) + if (IS_OPTION ("-config") || IS_OPTION ("-xf86config")) { CHECK_ARGS (1); g_cmdline.configFile = argv[++i]; @@ -1270,7 +1275,7 @@ InitOutput (ScreenInfo *screenInfo, int argc, char *argv[]) ErrorF ("InitOutput\n"); #endif - /* Try to read the XF86Config-style configuration file */ + /* Try to read the xorg.conf-style configuration file */ if (!winReadConfigfile ()) ErrorF ("InitOutput - Error reading config file\n"); |