|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r78576 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-05-24 05:56:25
Author: jurko
Date: 2012-05-24 05:56:23 EDT (Thu, 24 May 2012)
New Revision: 78576
URL: http://svn.boost.org/trac/boost/changeset/78576
Log:
Minor stylistic change - trimmed trailing whitespace.
Text files modified:
trunk/tools/build/v2/engine/builtins.c | 24 ++++++++++++------------
1 files changed, 12 insertions(+), 12 deletions(-)
Modified: trunk/tools/build/v2/engine/builtins.c
==============================================================================
--- trunk/tools/build/v2/engine/builtins.c (original)
+++ trunk/tools/build/v2/engine/builtins.c 2012-05-24 05:56:23 EDT (Thu, 24 May 2012)
@@ -162,7 +162,7 @@
{
const char * args[] = { "string", ":", "delimiters" };
- bind_builtin( "SPLIT_BY_CHARACTERS",
+ bind_builtin( "SPLIT_BY_CHARACTERS",
builtin_split_by_characters, 0, 0 );
}
@@ -207,9 +207,9 @@
}
{
- const char * args[] = { "targets", "*",
+ const char * args[] = { "targets", "*",
":", "log", "?",
- ":", "ignore-minus-n", "?",
+ ":", "ignore-minus-n", "?",
":", "ignore-minus-q", "?", 0 };
bind_builtin( "UPDATE_NOW",
builtin_update_now, 0, args );
@@ -481,7 +481,7 @@
LIST * targets = lol_get( frame->args, 0 );
LIST * sources = lol_get( frame->args, 1 );
LISTITER iter, end;
-
+
iter = list_begin( targets ), end = list_end( targets );
for ( ; iter != end; iter = list_next( iter ) )
{
@@ -944,7 +944,7 @@
LIST * l2 = lol_get( frame->args, 1 );
LIST * result = L0;
-
+
string buf[ 1 ];
const char * delimiters;
@@ -1369,7 +1369,7 @@
int original_stderr = 0;
int original_noexec = 0;
int original_quitquick = 0;
-
+
if ( !list_empty( log ) )
{
@@ -1421,7 +1421,7 @@
}
last_update_now_status = status;
-
+
if ( status == 0 )
return list_new( object_copy( constant_ok ) );
else
@@ -1758,7 +1758,7 @@
LIST * targets = lol_get(frame->args, 0);
LISTITER iter = list_begin( targets ), end = list_end( targets );
- for ( ; iter != end; iter = list_next( iter ) )
+ for ( ; iter != end; iter = list_next( iter ) )
{
TARGET* t = bindtarget( list_item( iter ) );
t->flags |= T_FLAG_PRECIOUS;
@@ -1795,7 +1795,7 @@
else
{
return L0;
- }
+ }
}
#ifdef HAVE_PYTHON
@@ -1977,10 +1977,10 @@
/*
- * Accepts four arguments:
+ * Accepts four arguments:
* - module name
* - rule name,
- * - Python callable.
+ * - Python callable.
* - (optional) bjam language function signature.
* Creates a bjam rule with the specified name in the specified module, which will
* invoke the Python callable.
@@ -1997,7 +1997,7 @@
OBJECT * module_name;
OBJECT * rule_name;
- if ( !PyArg_ParseTuple( args, "ssO|O:import_rule",
+ if ( !PyArg_ParseTuple( args, "ssO|O:import_rule",
&module, &rule, &func, &bjam_signature ) )
return NULL;
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