Clean up comments for os_process_arguments()
authorDavid Griffith <dave@661.org>
Wed, 30 Jan 2019 13:30:08 +0000 (05:30 -0800)
committerDavid Griffith <dave@661.org>
Wed, 30 Jan 2019 13:30:08 +0000 (05:30 -0800)
src/curses/ux_init.c
src/dumb/dumb_init.c
src/sdl/sf_util.c

index d1acaf18768c9e3b74ab604988f511b425ea853e..bc8981cf6cde5286850610864dae085b98cc643f 100644 (file)
@@ -157,24 +157,8 @@ void os_fatal (const char *s, ...)
 /*
  * os_process_arguments
  *
- * Handle command line switches. Some variables may be set to activate
- * special features of Frotz:
- *
- *     option_attribute_assignment
- *     option_attribute_testing
- *     option_context_lines
- *     option_object_locating
- *     option_object_movement
- *     option_left_margin
- *     option_right_margin
- *     option_ignore_errors
- *     option_piracy
- *     option_undo_slots
- *     option_expand_abbreviations
- *     option_script_cols
- *
- * The global pointer "story_name" is set to the story file name.
- *
+ * Handle command line switches.
+ * Some variables may be set to activate special features of Frotz.
  *
  */
 void os_process_arguments (int argc, char *argv[])
index fa99a757db45fdfc9e8195a6362ac45986f3bad9..fcabc5c6b2ab1812ae3666baf62867054a3292e6 100644 (file)
@@ -91,6 +91,13 @@ static int user_tandy_bit = 0;
 static char *graphics_filename = NULL;
 static bool plain_ascii = FALSE;
 
+/*
+ * os_process_arguments
+ *
+ * Handle command line switches.
+ * Some variables may be set to activate special features of Frotz.
+ *
+ */
 void os_process_arguments(int argc, char *argv[])
 {
     int c;
index 89596ab817c93d19c0e401291eecf0da8584d96c..df4322761727d0a587e1bfb3cda1a5df42480b47 100644 (file)
@@ -293,29 +293,6 @@ static void print_version(void)
     exit(2);
 }
 
-/*
- * os_process_arguments
- *
- * Handle command line switches. Some variables may be set to activate
- * special features of Frotz:
- *
- *     option_attribute_assignment
- *     option_attribute_testing
- *     option_context_lines
- *     option_object_locating
- *     option_object_movement
- *     option_left_margin
- *     option_right_margin
- *     option_ignore_errors
- *     option_piracy
- *     option_undo_slots
- *     option_expand_abbreviations
- *     option_script_cols
- *
- * The global pointer "story_name" is set to the story file name.
- *
- */
-
 /**
  * Like dirname except well defined.
  * Does not modify path.  Always returns a new string (caller must free).
@@ -338,6 +315,13 @@ static char *new_basename(const char *path)
     return p2;
 }
 
+/*
+ * os_process_arguments
+ *
+ * Handle command line switches.
+ * Some variables may be set to activate special features of Frotz.
+ *
+ */
 void os_process_arguments (int argc, char *argv[])
 {
   char *p;