Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-01-08 20:18:39


Author: jurko
Date: 2008-01-08 20:18:38 EST (Tue, 08 Jan 2008)
New Revision: 42628
URL: http://svn.boost.org/trac/boost/changeset/42628

Log:
Remove trailing spaces. Removed an empty line.
Text files modified:
   trunk/tools/jam/src/regexp.c | 9 ++++-----
   1 files changed, 4 insertions(+), 5 deletions(-)

Modified: trunk/tools/jam/src/regexp.c
==============================================================================
--- trunk/tools/jam/src/regexp.c (original)
+++ trunk/tools/jam/src/regexp.c 2008-01-08 20:18:38 EST (Tue, 08 Jan 2008)
@@ -345,7 +345,7 @@
         }
 
         /* Make a closing node, and hook it on the end. */
- ender = regnode((paren) ? CLOSE+parno : END);
+ ender = regnode((paren) ? CLOSE+parno : END);
         regtail(ret, ender);
 
         /* Hook the tails of the branches to the closing node. */
@@ -574,7 +574,7 @@
                  * On entry, the char at regparse[-1] is going to go
                  * into the string, no matter what it is. (It could be
                  * following a \ if we are entered from the '\' case.)
- *
+ *
                  * Basic idea is to pick up a good char in ch and
                  * examine the next char. If it's *+? then we twiddle.
                  * If it's \ then we frozzle. If it's other magic char
@@ -629,7 +629,7 @@
                                         default:
                                                 /* Backup point is \, scan * point is after it. */
                                                 regprev = regparse;
- regparse++;
+ regparse++;
                                                 continue; /* NOT break; */
                                         }
                                 }
@@ -1165,7 +1165,6 @@
         register char op = EXACTLY; /* Arbitrary non-END op. */
         register char *next;
 
-
         s = r->program + 1;
         while (op != END) { /* While that wasn't END last time... */
                 op = OP(s);
@@ -1173,7 +1172,7 @@
                 next = regnext(s);
                 if (next == NULL) /* Next ptr. */
                         printf("(0)");
- else
+ else
                         printf("(%d)", (s-r->program)+(next-s));
                 s += 3;
                 if (op == ANYOF || op == ANYBUT || op == EXACTLY) {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk