aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-01 13:56:47 +0000
committerGerd Moellmann1999-11-01 13:56:47 +0000
commite76f1c446d3e394e7fdb7648b72f1d2cac10a10c (patch)
treed1ff82f1786110a9f00ac0954e979e0e531838cd /src
parent400a1ed0cd657f05cf6c49d82a688a9107c2fe49 (diff)
downloademacs-e76f1c446d3e394e7fdb7648b72f1d2cac10a10c.tar.gz
emacs-e76f1c446d3e394e7fdb7648b72f1d2cac10a10c.zip
Remove whitespace after open or in front of closing parentheses.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/syntax.c14
2 files changed, 12 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f69810b1f5a..a52142ddbab 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
11999-11-01 Gerd Moellmann <gerd@gnu.org>
2
3 * syntax.c: Remove whitespace after open or in front of closing
4 parentheses.
5
11999-10-31 Gerd Moellmann <gerd@gnu.org> 61999-10-31 Gerd Moellmann <gerd@gnu.org>
2 7
3 * xdisp.c (resize_mini_window): Compute needed height differently. 8 * 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; \
2458 oldstate = Fcdr (oldstate); 2458 oldstate = Fcdr (oldstate);
2459 tem = Fcar (oldstate); 2459 tem = Fcar (oldstate);
2460 /* Check whether we are inside string_fence-style string: */ 2460 /* Check whether we are inside string_fence-style string: */
2461 state.instring = ( !NILP (tem) 2461 state.instring = (!NILP (tem)
2462 ? ( INTEGERP (tem) ? XINT (tem) : ST_STRING_STYLE) 2462 ? (INTEGERP (tem) ? XINT (tem) : ST_STRING_STYLE)
2463 : -1); 2463 : -1);
2464 2464
2465 oldstate = Fcdr (oldstate); 2465 oldstate = Fcdr (oldstate);
2466 tem = Fcar (oldstate); 2466 tem = Fcar (oldstate);
2467 state.incomment = ( !NILP (tem) 2467 state.incomment = (!NILP (tem)
2468 ? ( INTEGERP (tem) ? XINT (tem) : -1) 2468 ? (INTEGERP (tem) ? XINT (tem) : -1)
2469 : 0); 2469 : 0);
2470 2470
2471 oldstate = Fcdr (oldstate); 2471 oldstate = Fcdr (oldstate);
@@ -2477,8 +2477,8 @@ do { prev_from = from; \
2477 oldstate = Fcdr (oldstate); 2477 oldstate = Fcdr (oldstate);
2478 oldstate = Fcdr (oldstate); 2478 oldstate = Fcdr (oldstate);
2479 tem = Fcar (oldstate); 2479 tem = Fcar (oldstate);
2480 state.comstyle = NILP (tem) ? 0 : ( EQ (tem, Qsyntax_table) 2480 state.comstyle = NILP (tem) ? 0 : (EQ (tem, Qsyntax_table)
2481 ? ST_COMMENT_STYLE : 1 ); 2481 ? ST_COMMENT_STYLE : 1);
2482 2482
2483 oldstate = Fcdr (oldstate); 2483 oldstate = Fcdr (oldstate);
2484 tem = Fcar (oldstate); 2484 tem = Fcar (oldstate);