Mercurial > emacs
changeset 26272:1cbb1b30793d
Remove whitespace after open or in front of closing parentheses.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 01 Nov 1999 13:55:25 +0000 |
parents | b47b74998eef |
children | 56768bd174a4 |
files | src/syntax.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Mon Nov 01 12:42:13 1999 +0000 +++ b/src/syntax.c Mon Nov 01 13:55:25 1999 +0000 @@ -2458,14 +2458,14 @@ oldstate = Fcdr (oldstate); tem = Fcar (oldstate); /* Check whether we are inside string_fence-style string: */ - state.instring = ( !NILP (tem) - ? ( INTEGERP (tem) ? XINT (tem) : ST_STRING_STYLE) - : -1); + state.instring = (!NILP (tem) + ? (INTEGERP (tem) ? XINT (tem) : ST_STRING_STYLE) + : -1); oldstate = Fcdr (oldstate); tem = Fcar (oldstate); - state.incomment = ( !NILP (tem) - ? ( INTEGERP (tem) ? XINT (tem) : -1) + state.incomment = (!NILP (tem) + ? (INTEGERP (tem) ? XINT (tem) : -1) : 0); oldstate = Fcdr (oldstate); @@ -2477,8 +2477,8 @@ oldstate = Fcdr (oldstate); oldstate = Fcdr (oldstate); tem = Fcar (oldstate); - state.comstyle = NILP (tem) ? 0 : ( EQ (tem, Qsyntax_table) - ? ST_COMMENT_STYLE : 1 ); + state.comstyle = NILP (tem) ? 0 : (EQ (tem, Qsyntax_table) + ? ST_COMMENT_STYLE : 1); oldstate = Fcdr (oldstate); tem = Fcar (oldstate);