* src/syntax.c (syntax_multibyte): Omit unnecessary parens.
This commit is contained in:
parent
f182640f60
commit
7d69780681
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue