Delete trailing whitespace at end of lines.
[pspp-builds.git] / src / ui / terminal / command-line.c
index 3c427cf68fa4622351219a86733e003a76fdfe3d..39e015050e1fc0731eed7fd86cc0d90eee8575d0 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    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++;
@@ -232,11 +231,11 @@ N_("PSPP, a program for statistical analysis of sample data.\n"
 "\nInput and output:\n"
 "  -e, --error-file=FILE     send error messages to FILE (appended)\n"
 "  -f, --out-file=FILE       send output to FILE (overwritten)\n"
-"  -p, --pipe                read script from stdin, send output to stdout\n"
+"  -p, --pipe                read syntax from stdin, send output to stdout\n"
 "  -I-, --no-include         clear include path\n"
 "  -I, --include=DIR         append DIR to include path\n"
 "\nLanguage modifiers:\n"
-"  -i, --interactive         interpret scripts in interactive mode\n"
+"  -i, --interactive         interpret syntax in interactive mode\n"
 "  -n, --edit                just check syntax; don't actually run the code\n"
 "  -r, --no-statrc           disable execution of .pspp/rc at startup\n"
 "  -s, --safer               don't allow some unsafe operations\n"