[svn:parrot] r40987 - trunk/src/ops

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Sep 5 02:26:42 UTC 2009


Author: mikehh
Date: Sat Sep  5 02:26:41 2009
New Revision: 40987
URL: https://trac.parrot.org/parrot/changeset/40987

Log:
fix codetest failure - trailing spaces

Modified:
   trunk/src/ops/var.ops

Modified: trunk/src/ops/var.ops
==============================================================================
--- trunk/src/ops/var.ops	Sat Sep  5 02:08:13 2009	(r40986)
+++ trunk/src/ops/var.ops	Sat Sep  5 02:26:41 2009	(r40987)
@@ -63,9 +63,9 @@
 
 op store_dynamic_lex(in STR, invar PMC) {
     STRING  * const lex_name = $1;
-    PMC     * const ctx      = 
+    PMC     * const ctx      =
         Parrot_pcc_get_caller_ctx(interp, CURRENT_CONTEXT(interp));
-    PMC     * const lex_pad  = 
+    PMC     * const lex_pad  =
         PMC_IS_NULL(ctx)
             ? PMCNULL
             : Parrot_find_dynamic_pad(interp, lex_name, ctx);
@@ -112,7 +112,7 @@
 
 =item B<find_dynamic_lex>(out PMC, in STR)
 
-Search through caller lexpads for a lexical variable named $2 
+Search through caller lexpads for a lexical variable named $2
 and store it in $1.  Return a Null PMC if the lexical variable
 is not found.  (To search the current lexpad, use C<find_lex>
 above.)
@@ -121,9 +121,9 @@
 
 op find_dynamic_lex(out PMC, in STR) {
     STRING  * const lex_name = $2;
-    PMC     * const ctx      = 
+    PMC     * const ctx      =
         Parrot_pcc_get_caller_ctx(interp, CURRENT_CONTEXT(interp));
-    PMC     * const lex_pad  = 
+    PMC     * const lex_pad  =
         PMC_IS_NULL(ctx)
             ? PMCNULL
             : Parrot_find_dynamic_pad(interp, lex_name, ctx);


More information about the parrot-commits mailing list