]> code.delx.au - gnu-emacs/commitdiff
* src/syntax.c (syntax_multibyte): Omit unnecessary parens.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Mar 2016 17:23:12 +0000 (09:23 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Mar 2016 17:23:48 +0000 (09:23 -0800)
src/syntax.c

index 9fc76a6304511d5e09b424059ef4087477329324..249d0d58bc6e594448ece9ebc8e42ea7b22e37ed 100644 (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