]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove whitespace after open or in front of closing parentheses.
authorGerd Moellmann <gerd@gnu.org>
Mon, 1 Nov 1999 13:56:47 +0000 (13:56 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 1 Nov 1999 13:56:47 +0000 (13:56 +0000)
src/ChangeLog
src/syntax.c

index f69810b1f5a1cac1ed6e2d4a8749859387797fdf..a52142ddbabd1768bf703ddb850cc6f4d0150593 100644 (file)
@@ -1,3 +1,8 @@
+1999-11-01  Gerd Moellmann  <gerd@gnu.org>
+
+       * syntax.c: Remove whitespace after open or in front of closing
+       parentheses.
+
 1999-10-31  Gerd Moellmann  <gerd@gnu.org>
 
        * xdisp.c (resize_mini_window): Compute needed height differently.
index e321ffb0fe162b6e02fe5964e49ef04e04d9760c..60501f9677f32ffba637cdd0e9c4923a8e0fcdb7 100644 (file)
@@ -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);