Removed unused variable.

This commit is contained in:
Roland Illig 2005-08-15 21:40:34 +00:00
parent ad8b819a48
commit 1c607a7414
2 changed files with 2 additions and 2 deletions

View File

@ -4,6 +4,7 @@
unsigned.
* editcmd.c (edit_completion_dialog): Code cleanup.
* editdraw.c (render_edit_text): Removed unused variables.
* syntax.c (edit_read_syntax_file): Likewise.
2005-08-10 Pavel Roskin <proski@gnu.org>

View File

@ -982,7 +982,6 @@ edit_read_syntax_file (WEdit * edit, char ***pnames, const char *syntax_file,
regmatch_t pmatch[1];
char *args[1024], *l = 0;
int line = 0;
int argc;
int result = 0;
int count = 0;
char *lib_file;
@ -1003,7 +1002,7 @@ edit_read_syntax_file (WEdit * edit, char ***pnames, const char *syntax_file,
syntax_g_free (l);
if (!read_one_line (&l, f))
break;
argc = get_args (l, args, 1023); /* Final NULL */
(void)get_args (l, args, 1023); /* Final NULL */
if (!args[0])
continue;
/* Looking for `include ...` lines before first `file ...` ones */