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: Aurélien Aptel
Subject: Re: [Emacs-diffs] master 10a364d: * src/syntax.c: Fix result of syntax_multibyte()
Date: Mon, 29 Feb 2016 11:09:18 +0100

On Sun, Feb 28, 2016 at 5:45 PM, Stefan Monnier
<address@hidden> wrote:
>> -  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?

Nothing, I had a brain fart, see [1].

1: http://thread.gmane.org/gmane.emacs.devel/200697



reply via email to

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