diff options
| author | Aurelien Aptel | 2016-02-26 20:34:40 +0100 |
|---|---|---|
| committer | Aurelien Aptel | 2016-02-26 21:22:23 +0100 |
| commit | 10a364d6737a84ebe2ec71ee107a4aef80660aae (patch) | |
| tree | 3215058ff9f2da0033058cdd10b7592e8753fb14 /src | |
| parent | e35f99f2dd35a89b42961fc63c7e2772fb03c792 (diff) | |
| download | emacs-10a364d6737a84ebe2ec71ee107a4aef80660aae.tar.gz emacs-10a364d6737a84ebe2ec71ee107a4aef80660aae.zip | |
* src/syntax.c: Fix result of syntax_multibyte()
The ?: operator has a lower precedence than ||.
Bug introduced by commit 45b683a.
Diffstat (limited to 'src')
| -rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 249d0d58bc6..9fc76a63045 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -2637,7 +2637,7 @@ between them, return t; otherwise return nil. */) | |||
| 2637 | static enum syntaxcode | 2637 | static enum syntaxcode |
| 2638 | syntax_multibyte (int c, bool multibyte_symbol_p) | 2638 | syntax_multibyte (int c, bool multibyte_symbol_p) |
| 2639 | { | 2639 | { |
| 2640 | return ASCII_CHAR_P (c) || !multibyte_symbol_p ? SYNTAX (c) : Ssymbol; | 2640 | return (ASCII_CHAR_P (c) || !multibyte_symbol_p) ? SYNTAX (c) : Ssymbol; |
| 2641 | } | 2641 | } |
| 2642 | 2642 | ||
| 2643 | static Lisp_Object | 2643 | static Lisp_Object |