}
}
-/* add_word returns a new string which has the contents of lib appended to list.
- If list is NULL then lib is duplicated and returned otherwise the list is
- appended by "," and the contents of lib. */
+/* add_word returns a new string which has the contents of lib
+ appended to list. If list is NULL then lib is duplicated and
+ returned otherwise the list is appended by "," and the contents of
+ lib. */
static const char *
add_word (const char *list, const char *lib)
return copy;
}
-/* convert_abbreviation checks abbreviation against known library abbreviations.
- If an abbreviations is found it converts the element to the full
- library name, otherwise the user supplied name is added to the full_libraries list.
- A new string is returned. */
+/* convert_abbreviation checks abbreviation against known library
+ abbreviations. If an abbreviation is found it converts the element
+ to the full library name, otherwise the user supplied name is added
+ to the full_libraries list. A new string is returned. */
static const char *
convert_abbreviation (const char *full_libraries, const char *abbreviation)
return add_word (full_libraries, abbreviation);
}
-/* convert_abbreviations checks each element in the library list to see if an
- a known library abbreviation was used. If found it converts the element to the full
- library name, otherwise the element is copied into the list.
- A new string is returned. */
+/* convert_abbreviations checks each element in the library list to
+ see if an a known library abbreviation was used. If found it
+ converts the element to the full library name, otherwise the
+ element is copied into the list. A new string is returned. */
static const char *
convert_abbreviations (const char *libraries)
#define LINK_COMMAND_SPEC ""
-/* This is the contribution to the `documented_lang_options' array in
- toplev.c for gm2. */
+/* These options are used in toplev.cc via the auto-generated options.cc for
+ the driver program gm2. */
DEFINE_LANG_NAME ("Modula-2")
{ "-fno-return",
N_("turns off runtime checking for functions which finish without executing a RETURN statement") },
{ "-fcase",
- N_("turns on runtime checking to check whether a CASE statement requires an ELSE clause when on was not specified") },
+ N_("turns on runtime checking to check whether a CASE statement requires an ELSE clause when one was not specified") },
{ "-fno-case",
N_("turns off runtime checking to check whether a CASE statement requires an ELSE clause when on was not specified") },
{ "-fsoft-check-all",