emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Emacs-diffs] master 10a364d: * src/syntax.c: Fix result of syntax_m


From: Stefan Monnier
Subject: Re: [Emacs-diffs] master 10a364d: * src/syntax.c: Fix result of syntax_multibyte()
Date: Sun, 28 Feb 2016 11:45:53 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

> -  return ASCII_CHAR_P (c) || !multibyte_symbol_p ? SYNTAX (c) : Ssymbol;
> +  return (ASCII_CHAR_P (c) || !multibyte_symbol_p) ? SYNTAX (c) : Ssymbol;

According to https://en.wikipedia.org/wiki/Operators_in_C_and_C%2B%2B,
the parentheses shouldn't make any difference.
What am I missing?


        Stefan



reply via email to

[Prev in Thread] Current Thread [Next in Thread]