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:
parent
f182640f60
commit
7d69780681
@ -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…
Reference in New Issue
Block a user