X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2Fcommand-line.c;h=39e015050e1fc0731eed7fd86cc0d90eee8575d0;hb=f5c108becd49d78f4898cab11352291f5689d24e;hp=eb7d99fa264da30e161644ff35c5bc0a5f9d33fd;hpb=b1d443d69154707ed834fccff17a54585c84507d;p=pspp-builds.git diff --git a/src/ui/terminal/command-line.c b/src/ui/terminal/command-line.c index eb7d99fa..39e01505 100644 --- a/src/ui/terminal/command-line.c +++ b/src/ui/terminal/command-line.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -112,7 +111,7 @@ parse_command_line (int argc, char **argv, struct source_stream *ss) } break; - case 'x': + case 'x': if ( 0 == strcmp(optarg,"compatible") ) set_syntax(COMPATIBLE); else if ( 0 == strcmp(optarg,"enhanced")) @@ -194,18 +193,18 @@ parse_command_line (int argc, char **argv, struct source_stream *ss) if (process_statrc) { char *pspprc_fn = fn_search_path ("rc", config_path); - if (pspprc_fn != NULL) + if (pspprc_fn != NULL) { getl_append_source (ss, create_syntax_file_source (pspprc_fn)); - free (pspprc_fn); + free (pspprc_fn); } } for (i = optind; i < argc; i++) if (strchr (argv[i], '=')) outp_configure_macro (argv[i]); - else + else { getl_append_source (ss, create_syntax_file_source (argv[i])); syntax_files++;