diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-03 09:03:45 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-03 09:03:45 +0000 |
commit | bc8ce49ace9e8e81e01f8ebaa2ef79c2f2c3dc44 (patch) | |
tree | bce96d344bc333d20049633353d62439e8036581 /texinfo | |
parent | 0a4be248bae9e061013be969cf9f5f060320e17e (diff) | |
download | gcc-bc8ce49ace9e8e81e01f8ebaa2ef79c2f2c3dc44.tar.gz |
* makeinfo/makeinfo.c (CommandTable): Fix braces in initializer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18385 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'texinfo')
-rw-r--r-- | texinfo/ChangeLog | 4 | ||||
-rw-r--r-- | texinfo/makeinfo/makeinfo.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/texinfo/ChangeLog b/texinfo/ChangeLog index f16f5647276..06ebf3538a6 100644 --- a/texinfo/ChangeLog +++ b/texinfo/ChangeLog @@ -1,3 +1,7 @@ +Tue Mar 3 10:05:46 1998 Jeffrey A Law (law@cygnus.com) + + * makeinfo/makeinfo.c (CommandTable): Fix braces in initializer. + Tue Jan 13 21:34:23 1998 H.J. Lu (hjl@gnu.org) * libtxi/Makefile.in (AR_FLAGS): Defined as "rc". diff --git a/texinfo/makeinfo/makeinfo.c b/texinfo/makeinfo/makeinfo.c index afcc2e2c328..21ffee0a9ea 100644 --- a/texinfo/makeinfo/makeinfo.c +++ b/texinfo/makeinfo/makeinfo.c @@ -782,7 +782,9 @@ static COMMAND CommandTable[] = { { "infoinclude", cm_obsolete, NO_BRACE_ARGS }, { "titlespec", cm_obsolete, NO_BRACE_ARGS }, - {(char *) NULL, (COMMAND_FUNCTION *) NULL}, NO_BRACE_ARGS}; + {(char *) NULL, (COMMAND_FUNCTION *) NULL, NO_BRACE_ARGS} +}; + struct option long_options[] = { |