summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-11-01 13:56:47 +0000
committerGerd Moellmann <gerd@gnu.org>1999-11-01 13:56:47 +0000
commite76f1c446d3e394e7fdb7648b72f1d2cac10a10c (patch)
treed1ff82f1786110a9f00ac0954e979e0e531838cd /src/syntax.c
parent400a1ed0cd657f05cf6c49d82a688a9107c2fe49 (diff)
downloademacs-e76f1c446d3e394e7fdb7648b72f1d2cac10a10c.tar.gz
Remove whitespace after open or in front of closing parentheses.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c14
1 files changed, 7 insertions, 7 deletions
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);