diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2007-05-26 12:19:08 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2007-05-26 12:19:08 +0000 |
commit | 20d8f4d26b54538f9a1d67b7b9c51e0f30473657 (patch) | |
tree | fac6f183dfd87687f8a021c4e980a4143d0e384e /src/core/session.c | |
parent | fda5181dbd5743eb6c4644ca48ac1ee502e7bd81 (diff) | |
download | irssi-20d8f4d26b54538f9a1d67b7b9c51e0f30473657.zip |
Hide --session from --help output and remove its mention from the manual,
internal use only.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4525 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/core/session.c')
-rw-r--r-- | src/core/session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/session.c b/src/core/session.c index 4b0773fc..ee1e2456 100644 --- a/src/core/session.c +++ b/src/core/session.c @@ -335,7 +335,7 @@ static void sig_init_finished(void) void session_register_options(void) { static struct poptOption options[] = { - { "session", 0, POPT_ARG_STRING, &session_file, 0, "Used by /UPGRADE command", "PATH" }, + { "session", 0, POPT_ARG_STRING | POPT_ARGFLAG_DOC_HIDDEN, &session_file, 0, "Used by /UPGRADE command", "PATH" }, { NULL, '\0', 0, NULL } }; |