# HG changeset patch # User Gerd Moellmann # Date 941464525 0 # Node ID 1cbb1b30793d14ca94d1d11d91a12dc8e29d1b6e # Parent b47b74998eefa8a1b144be0ba309e310c351d816 Remove whitespace after open or in front of closing parentheses. diff -r b47b74998eef -r 1cbb1b30793d src/syntax.c --- 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);