1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-29 11:02:01 +00:00

(init_syntax_once): Add trick to avoid compiler warning

of "comparison is always 1 ...".
This commit is contained in:
Kenichi Handa 1997-02-28 01:38:57 +00:00
parent 7075e5a56a
commit 78f9a1f703

View File

@ -1851,7 +1851,7 @@ DEFUN ("parse-partial-sexp", Fparse_partial_sexp, Sparse_partial_sexp, 2, 6, 0,
init_syntax_once ()
{
register int i;
register int i, c;
Lisp_Object temp;
/* This has to be done here, before we call Fmake_char_table. */
@ -1907,11 +1907,17 @@ init_syntax_once ()
temp = XVECTOR (Vsyntax_code_object)->contents[(int) Ssymbol];
for (i = 0; i < 10; i++)
SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, "_-+*/&|<>="[i], temp);
{
c = "_-+*/&|<>="[i];
SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp);
}
temp = XVECTOR (Vsyntax_code_object)->contents[(int) Spunct];
for (i = 0; i < 12; i++)
SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, ".,;:?!#@~^'`"[i], temp);
{
c = ".,;:?!#@~^'`"[i];
SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp);
}
}
syms_of_syntax ()