2000-05-14 Gary Houston <ghouston@arglist.com>
[bpt/guile.git] / libguile / options.h
index 5ab41c6..a40a6a5 100644 (file)
@@ -55,7 +55,12 @@ typedef struct scm_option
 {
   int type;
   char *name;
+
+  /*
+    schizophrenic use: both SCM and int
+   */
   unsigned long val;
+  /* SCM val */
   char *doc;
 } scm_option;
 
@@ -69,3 +74,9 @@ extern void scm_init_opts (SCM (*func) (SCM), scm_option options[], int n);
 extern void scm_init_options (void);
 
 #endif /* OPTIONSH */
+
+/*
+  Local Variables:
+  c-file-style: "gnu"
+  End:
+*/