Removed unused variable.
Этот коммит содержится в:
родитель
ad8b819a48
Коммит
1c607a7414
@ -4,6 +4,7 @@
|
|||||||
unsigned.
|
unsigned.
|
||||||
* editcmd.c (edit_completion_dialog): Code cleanup.
|
* editcmd.c (edit_completion_dialog): Code cleanup.
|
||||||
* editdraw.c (render_edit_text): Removed unused variables.
|
* editdraw.c (render_edit_text): Removed unused variables.
|
||||||
|
* syntax.c (edit_read_syntax_file): Likewise.
|
||||||
|
|
||||||
2005-08-10 Pavel Roskin <proski@gnu.org>
|
2005-08-10 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
@ -982,7 +982,6 @@ edit_read_syntax_file (WEdit * edit, char ***pnames, const char *syntax_file,
|
|||||||
regmatch_t pmatch[1];
|
regmatch_t pmatch[1];
|
||||||
char *args[1024], *l = 0;
|
char *args[1024], *l = 0;
|
||||||
int line = 0;
|
int line = 0;
|
||||||
int argc;
|
|
||||||
int result = 0;
|
int result = 0;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
char *lib_file;
|
char *lib_file;
|
||||||
@ -1003,7 +1002,7 @@ edit_read_syntax_file (WEdit * edit, char ***pnames, const char *syntax_file,
|
|||||||
syntax_g_free (l);
|
syntax_g_free (l);
|
||||||
if (!read_one_line (&l, f))
|
if (!read_one_line (&l, f))
|
||||||
break;
|
break;
|
||||||
argc = get_args (l, args, 1023); /* Final NULL */
|
(void)get_args (l, args, 1023); /* Final NULL */
|
||||||
if (!args[0])
|
if (!args[0])
|
||||||
continue;
|
continue;
|
||||||
/* Looking for `include ...` lines before first `file ...` ones */
|
/* Looking for `include ...` lines before first `file ...` ones */
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user