Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
6d7536bd
Unverified
Commit
6d7536bd
authored
Dec 09, 2017
by
Mihai Moldovan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'uli42-pr/keep_co' into 3.6.x
Attributes GH PR #582:
https://github.com/ArcticaProject/nx-libs/pull/582
parents
eb961873
eff0f366
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
nxagent.1
nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1
+6
-0
utils.c
nx-X11/programs/Xserver/os/utils.c
+11
-0
No files found.
nx-X11/programs/Xserver/hw/nxagent/man/nxagent.1
View file @
6d7536bd
...
@@ -161,6 +161,12 @@ sets key-click volume (allowable range: 0-100).
...
@@ -161,6 +161,12 @@ sets key-click volume (allowable range: 0-100).
sets the visual class for the root window of color screens.
sets the visual class for the root window of color screens.
The class numbers are as specified in the X protocol.
The class numbers are as specified in the X protocol.
Not obeyed by all servers.
Not obeyed by all servers.
.TP 8
.B \-co \fIfilename\fP
This used to be the option for specifying the path to the RGB color
database file. As the RGB color database is now embedded into the
binary this option has no effect but is kept for
compatibility. Deprecated.
.ig
.ig
.TP 8
.TP 8
.B \-config \fIfilename\fP
.B \-config \fIfilename\fP
...
...
nx-X11/programs/Xserver/os/utils.c
View file @
6d7536bd
...
@@ -571,6 +571,9 @@ void UseMsg(void)
...
@@ -571,6 +571,9 @@ void UseMsg(void)
ErrorF
(
"-c turns off key-click
\n
"
);
ErrorF
(
"-c turns off key-click
\n
"
);
ErrorF
(
"c # key-click volume (0-100)
\n
"
);
ErrorF
(
"c # key-click volume (0-100)
\n
"
);
ErrorF
(
"-cc int default color visual class
\n
"
);
ErrorF
(
"-cc int default color visual class
\n
"
);
#ifdef NXAGENT_SERVER
ErrorF
(
"-co file deprecated, has no effect
\n
"
);
#endif
#ifdef COMMANDLINE_CHALLENGED_OPERATING_SYSTEMS
#ifdef COMMANDLINE_CHALLENGED_OPERATING_SYSTEMS
ErrorF
(
"-config file read options from file
\n
"
);
ErrorF
(
"-config file read options from file
\n
"
);
#endif
#endif
...
@@ -776,6 +779,14 @@ ProcessCommandLine(int argc, char *argv[])
...
@@ -776,6 +779,14 @@ ProcessCommandLine(int argc, char *argv[])
else
else
UseMsg
();
UseMsg
();
}
}
#ifdef NXAGENT_SERVER
else
if
(
strcmp
(
argv
[
i
],
"-co"
)
==
0
)
{
fprintf
(
stderr
,
"Warning: Ignoring deprecated command line option '%s'.
\n
"
,
argv
[
i
]);
if
(
++
i
>=
argc
)
UseMsg
();
}
#endif
else
if
(
strcmp
(
argv
[
i
],
"-core"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-core"
)
==
0
)
CoreDump
=
TRUE
;
CoreDump
=
TRUE
;
else
if
(
strcmp
(
argv
[
i
],
"-dpi"
)
==
0
)
else
if
(
strcmp
(
argv
[
i
],
"-dpi"
)
==
0
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment