1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

* src/syntax.c (syntax_multibyte): Omit unnecessary parens.

This commit is contained in:
Paul Eggert 2016-03-01 09:23:12 -08:00
parent f182640f60
commit 7d69780681

View File

@ -2637,7 +2637,7 @@ between them, return t; otherwise return nil. */)
static enum syntaxcode
syntax_multibyte (int c, bool multibyte_symbol_p)
{
return (ASCII_CHAR_P (c) || !multibyte_symbol_p) ? SYNTAX (c) : Ssymbol;
return ASCII_CHAR_P (c) || !multibyte_symbol_p ? SYNTAX (c) : Ssymbol;
}
static Lisp_Object