diff options
author | sabetts <sabetts> | 2000-09-15 04:57:06 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2000-09-15 04:57:06 +0000 |
commit | f292fda9dbdae554a69dd484b6e4dff9cef9e6a3 (patch) | |
tree | 7bd688345e260f99b9c175f2fadc9931c11db6ba /src | |
parent | b870d2fc810701782a0eb02b508106009211d8cf (diff) | |
download | ratpoison-f292fda9dbdae554a69dd484b6e4dff9cef9e6a3.zip |
now quits when it receives an invalid command line option.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -151,6 +151,8 @@ main (int argc, char *argv[]) case 'v': print_version (); break; + default: + exit (EXIT_FAILURE); } } |