From: Gerd Moellmann Date: Mon, 1 Nov 1999 13:56:47 +0000 (+0000) Subject: Remove whitespace after open or in front of closing parentheses. X-Git-Tag: emacs-pretest-21.0.90~6236 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e76f1c446d3e394e7fdb7648b72f1d2cac10a10c;p=emacs.git Remove whitespace after open or in front of closing parentheses. --- diff --git a/src/ChangeLog b/src/ChangeLog index f69810b1f5a..a52142ddbab 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +1999-11-01 Gerd Moellmann + + * syntax.c: Remove whitespace after open or in front of closing + parentheses. + 1999-10-31 Gerd Moellmann * xdisp.c (resize_mini_window): Compute needed height differently. diff --git a/src/syntax.c b/src/syntax.c index e321ffb0fe1..60501f9677f 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2458,14 +2458,14 @@ do { prev_from = from; \ 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 @@ do { prev_from = from; \ 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);