[svn:parrot] r42534 - in trunk: . compilers/imcc compilers/pct/src/PAST compilers/pirc/src config/gen/platform/ansi config/gen/platform/openbsd config/gen/platform/win32 config/init/hints config/inter docs/pdds lib/Parrot lib/Parrot/Docs lib/Parrot/Pmc2c runtime/parrot/library src src/gc src/ops src/pmc src/string t/codingstd t/compilers/imcc/syn t/op t/perl t/pmc t/run t/tools/dev/searchops t/tools/ops2pm/samples tools/dev
coke at svn.parrot.org
coke at svn.parrot.org
Mon Nov 16 19:26:06 UTC 2009
Author: coke
Date: Mon Nov 16 19:26:01 2009
New Revision: 42534
URL: https://trac.parrot.org/parrot/changeset/42534
Log:
Prefer "RT #NNN" or "TT #NNN"
Modified:
trunk/README_cygwin.pod
trunk/compilers/imcc/main.c
trunk/compilers/imcc/parser_util.c
trunk/compilers/pct/src/PAST/Compiler.pir
trunk/compilers/pirc/src/main.c
trunk/config/gen/platform/ansi/dl.c
trunk/config/gen/platform/ansi/exec.c
trunk/config/gen/platform/ansi/time.c
trunk/config/gen/platform/openbsd/memexec.c
trunk/config/gen/platform/win32/exec.c
trunk/config/init/hints/solaris.pm
trunk/config/inter/make.pm
trunk/config/inter/progs.pm
trunk/docs/pdds/pdd03_calling_conventions.pod
trunk/lib/Parrot/Docs/File.pm
trunk/lib/Parrot/OpsFile.pm
trunk/lib/Parrot/Pmc2c/MethodEmitter.pm
trunk/lib/Parrot/Pmc2c/PMCEmitter.pm
trunk/lib/Parrot/Test.pm
trunk/runtime/parrot/library/Range.pir
trunk/src/exceptions.c
trunk/src/exit.c
trunk/src/gc/malloc_trace.c
trunk/src/global.c
trunk/src/library.c
trunk/src/ops/io.ops
trunk/src/pbc_merge.c
trunk/src/pmc/eval.pmc
trunk/src/pmc/exception.pmc
trunk/src/pmc/file.pmc
trunk/src/pmc/hashiteratorkey.pmc
trunk/src/string/charset.c
trunk/t/codingstd/linelength.t
trunk/t/compilers/imcc/syn/pcc.t
trunk/t/compilers/imcc/syn/regressions.t
trunk/t/op/number.t
trunk/t/op/stringu.t
trunk/t/perl/Parrot_Test.t
trunk/t/pmc/float.t
trunk/t/pmc/packfile.t
trunk/t/pmc/sub.t
trunk/t/run/options.t
trunk/t/tools/dev/searchops/samples.pm
trunk/t/tools/ops2pm/samples/core_ops.original
trunk/t/tools/ops2pm/samples/pic_ops.original
trunk/tools/dev/mk_language_shell.pl
Modified: trunk/README_cygwin.pod
==============================================================================
--- trunk/README_cygwin.pod Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/README_cygwin.pod Mon Nov 16 19:26:01 2009 (r42534)
@@ -139,7 +139,7 @@
=item Spurious stackdumps while building
-Building with an already installed library fails. See RT#39742
+Building with an already installed library fails. See RT #39742
Be sure that there's no other libparrot.dll.a or libparrot.a
in the linker libpath.
Modified: trunk/compilers/imcc/main.c
==============================================================================
--- trunk/compilers/imcc/main.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/compilers/imcc/main.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -595,7 +595,7 @@
case NAMESPACE: printf(".namespace "); break;
case CONST: printf(".const "); break;
case PARAM: printf(".param "); break;
- /* RT#46147: print out more information about the macro */
+ /* RT #46147: print out more information about the macro */
/* case MACRO: yylex(&val, interp, yyscanner);
break; */ /* swallow nl */
case MACRO: printf(".macro "); break;
Modified: trunk/compilers/imcc/parser_util.c
==============================================================================
--- trunk/compilers/imcc/parser_util.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/compilers/imcc/parser_util.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -871,7 +871,7 @@
/* We need to clear the current_results from the current context. This is
* in order to prevent any RetContinuations that get promoted to full
* Continuations (this happens when something is the target of a :outer)
- * trying to return values using them when invoked. (See TT#500 for the
+ * trying to return values using them when invoked. (See TT #500 for the
* report of the bug this fixes). */
opcode_t *save_results = Parrot_pcc_get_results(interp, CURRENT_CONTEXT(interp));
Parrot_pcc_set_results(interp, CURRENT_CONTEXT(interp), NULL);
Modified: trunk/compilers/pct/src/PAST/Compiler.pir
==============================================================================
--- trunk/compilers/pct/src/PAST/Compiler.pir Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/compilers/pct/src/PAST/Compiler.pir Mon Nov 16 19:26:01 2009 (r42534)
@@ -199,7 +199,7 @@
set_global '@?BLOCK', blockpast
have_blockpast:
null $P0
- set_global '$?SUB', $P0 # see RT#49758
+ set_global '$?SUB', $P0 # see RT #49758
.tailcall self.'as_post'(past, 'rtype'=>'v')
.end
@@ -1877,7 +1877,7 @@
=item copy(PAST::Op node)
Implement a 'copy' assignment (at least until we get the 'copy'
-opcode -- see RT#47828).
+opcode -- see RT #47828).
=cut
Modified: trunk/compilers/pirc/src/main.c
==============================================================================
--- trunk/compilers/pirc/src/main.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/compilers/pirc/src/main.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -153,7 +153,7 @@
/* runs :init functions */
PackFile_fixup_subs(interp, PBC_MAIN, NULL);
- /* RT#46149 no return value :-( */
+ /* RT #46149 no return value :-( */
Parrot_runcode(interp, argc, argv);
}
Modified: trunk/config/gen/platform/ansi/dl.c
==============================================================================
--- trunk/config/gen/platform/ansi/dl.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/gen/platform/ansi/dl.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -11,7 +11,7 @@
=head1 DESCRIPTION
-RT#48264
+RT #48264
=head2 Functions
Modified: trunk/config/gen/platform/ansi/exec.c
==============================================================================
--- trunk/config/gen/platform/ansi/exec.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/gen/platform/ansi/exec.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -11,7 +11,7 @@
=head1 DESCRIPTION
-RT#48264
+RT #48264
=head2 Functions
Modified: trunk/config/gen/platform/ansi/time.c
==============================================================================
--- trunk/config/gen/platform/ansi/time.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/gen/platform/ansi/time.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -11,7 +11,7 @@
=head1 DESCRIPTION
-RT#48264
+RT #48264
=head2 Functions
Modified: trunk/config/gen/platform/openbsd/memexec.c
==============================================================================
--- trunk/config/gen/platform/openbsd/memexec.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/gen/platform/openbsd/memexec.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -11,7 +11,7 @@
=head1 DESCRIPTION
-RT#48264
+RT #48264
=head2 Functions
Modified: trunk/config/gen/platform/win32/exec.c
==============================================================================
--- trunk/config/gen/platform/win32/exec.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/gen/platform/win32/exec.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -62,7 +62,7 @@
WaitForSingleObject(pi.hProcess, INFINITE);
if (!GetExitCodeProcess(pi.hProcess, &status)) {
- /* RT#48278 njs Should call GetLastError for failure message? */
+ /* RT #48278 njs Should call GetLastError for failure message? */
Parrot_warn(interp, PARROT_WARNINGS_PLATFORM_FLAG,
"Process completed: Failed to get exit code.");
}
@@ -133,7 +133,7 @@
/* Get exit code. */
if (!GetExitCodeProcess(pi.hProcess, &status)) {
- /* RT#48278 njs Should call GetLastError for failure message? */
+ /* RT #48278 njs Should call GetLastError for failure message? */
Parrot_warn(interp, PARROT_WARNINGS_PLATFORM_FLAG,
"Process completed: Failed to get exit code.");
}
Modified: trunk/config/init/hints/solaris.pm
==============================================================================
--- trunk/config/init/hints/solaris.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/init/hints/solaris.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -57,7 +57,7 @@
# code for use in shared libraries. -KPIC for Sun's compiler, -fPIC for
# gcc. We don't know which compiler we're using till after the
# gccversion test.
- # RT#43150 Should this go into the shlibs.pl Configure.pl unit instead?
+ # RT #43150 Should this go into the shlibs.pl Configure.pl unit instead?
my $solaris_cc_shared_cb = sub {
my ( $key, $gccversion ) = @_;
Modified: trunk/config/inter/make.pm
==============================================================================
--- trunk/config/inter/make.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/inter/make.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -120,7 +120,7 @@
# get the default value
my $make_c = $conf->data->get('make_c');
- # RT#43171 this is an ugly hack
+ # RT #43171 this is an ugly hack
# replace the value for $(MAKE) with the actual path or we'll end up
# with a variable that recursively refers to itself
$make_c =~ s/\$\(MAKE\)/$prog/;
Modified: trunk/config/inter/progs.pm
==============================================================================
--- trunk/config/inter/progs.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/config/inter/progs.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -112,13 +112,13 @@
$verbose and print " ccflags: $ccflags\n";
$linkflags = $conf->data->get('linkflags');
- $linkflags =~ s/-libpath:\S+//g; # RT#43174 No idea why.
+ $linkflags =~ s/-libpath:\S+//g; # RT #43174 No idea why.
$linkflags = integrate( $linkflags, $conf->options->get('linkflags') );
$linkflags = prompt( "And flags for your linker?", $linkflags ) if $ask;
$conf->data->set( linkflags => $linkflags );
$ldflags = $conf->data->get('ldflags');
- $ldflags =~ s/-libpath:\S+//g; # RT#43174 No idea why.
+ $ldflags =~ s/-libpath:\S+//g; # RT #43174 No idea why.
$ldflags = integrate( $ldflags, $conf->options->get('ldflags') );
$ldflags = prompt( "And your $ld flags for building shared libraries?", $ldflags )
if $ask;
Modified: trunk/docs/pdds/pdd03_calling_conventions.pod
==============================================================================
--- trunk/docs/pdds/pdd03_calling_conventions.pod Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/docs/pdds/pdd03_calling_conventions.pod Mon Nov 16 19:26:01 2009 (r42534)
@@ -117,7 +117,7 @@
If the C<NAMED> bit is also set, the aggregate will be used as a hash; its
contents, as key/value pairs, will be passed as named arguments. The PMC
-must implement the full hash interface. {{ RT#45367: Limit the required
+must implement the full hash interface. {{ RT #45367: Limit the required
interface. }}
If the C<NAMED> bit is not set, the aggregate will be used as an array; its
Modified: trunk/lib/Parrot/Docs/File.pm
==============================================================================
--- trunk/lib/Parrot/Docs/File.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/lib/Parrot/Docs/File.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -311,7 +311,7 @@
sub is_docs_link {
my $self = shift;
- # RT#43681 - This needs more thought. I'm trying to work out which files
+ # RT #43681 - This needs more thought. I'm trying to work out which files
# it's sensible to link directly to. Suffixes other than txt are a
# problem (for me at least) because the browser thinks it should
# download the file.
Modified: trunk/lib/Parrot/OpsFile.pm
==============================================================================
--- trunk/lib/Parrot/OpsFile.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/lib/Parrot/OpsFile.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -665,7 +665,7 @@
s/goto\s+ADDRESS\((.*)\)/{{=$1}}/mg;
s/HALT\(\)/{{=0}}/mg;
- # RT#43721: This ought to throw errors when attempting to rewrite $n
+ # RT #43721: This ought to throw errors when attempting to rewrite $n
# argument accesses and other things that make no sense in the
# preamble.
$_ = Parrot::Op->rewrite_body( $_, $trans, 'preamble' );
Modified: trunk/lib/Parrot/Pmc2c/MethodEmitter.pm
==============================================================================
--- trunk/lib/Parrot/Pmc2c/MethodEmitter.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/lib/Parrot/Pmc2c/MethodEmitter.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -150,8 +150,8 @@
'void**' => 'B',
'void **' => 'B',
- #"BIGNUM*" => "???" # RT#43731
- #"BIGNUM *"=> "???" # RT#43731
+ #"BIGNUM*" => "???" # RT #43731
+ #"BIGNUM *"=> "???" # RT #43731
);
sub proto {
Modified: trunk/lib/Parrot/Pmc2c/PMCEmitter.pm
==============================================================================
--- trunk/lib/Parrot/Pmc2c/PMCEmitter.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/lib/Parrot/Pmc2c/PMCEmitter.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -277,7 +277,7 @@
"void*" => "b",
"void**" => "B",
- #"BIGNUM*" => "???" # RT#43731
+ #"BIGNUM*" => "???" # RT #43731
);
sub proto {
Modified: trunk/lib/Parrot/Test.pm
==============================================================================
--- trunk/lib/Parrot/Test.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/lib/Parrot/Test.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -264,7 +264,7 @@
Generate functions that are only used by a couple of
Parrot::Test::<lang> modules.
-See RT#43266.
+See RT #43266.
This implementation is experimental and currently only works
for languages/pipp.
Modified: trunk/runtime/parrot/library/Range.pir
==============================================================================
--- trunk/runtime/parrot/library/Range.pir Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/runtime/parrot/library/Range.pir Mon Nov 16 19:26:01 2009 (r42534)
@@ -49,7 +49,7 @@
addattribute $P1, 'exhausted'
.end
-# RT#42430
+# RT #42430
# :method is only specified here so we can get 'self'
=head1 :vtable
@@ -175,7 +175,7 @@
.return (from)
.end
-# RT#42430
+# RT #42430
# :method is only specified on the shift_* vtables for self.
# Wrappers for the shift_pmc vtable - rely on autoboxing.
@@ -226,7 +226,7 @@
.return (to)
.end
-# RT#42430
+# RT #42430
# :method is only specified on the shift_* vtables for self.
# Wrappers for the shift_pmc vtable - rely on autoboxing.
Modified: trunk/src/exceptions.c
==============================================================================
--- trunk/src/exceptions.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/exceptions.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -355,7 +355,7 @@
}
/* Note the thrower.
- * XXX TT#596 - pass in current context instead when we have context PMCs. */
+ * XXX TT #596 - pass in current context instead when we have context PMCs. */
/* Don't split line. It will break CONST_STRING handling */
VTABLE_set_attr_str(interp, exception, CONST_STRING(interp, "thrower"), Parrot_pcc_get_continuation(interp, CURRENT_CONTEXT(interp)));
Modified: trunk/src/exit.c
==============================================================================
--- trunk/src/exit.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/exit.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -41,7 +41,7 @@
Parrot_on_exit(PARROT_INTERP, NOTNULL(exit_handler_f function), ARGIN_NULLOK(void *arg))
{
ASSERT_ARGS(Parrot_on_exit)
- /* RT#46403 we might want locking around the list access. I'm sure this
+ /* RT #46403 we might want locking around the list access. I'm sure this
* will be the least of the threading issues. */
handler_node_t * const new_node = mem_allocate_typed(handler_node_t);
@@ -72,7 +72,7 @@
/* we are well "below" the runloop now, where lo_var_ptr
* is set usually - exit handlers may run some resource-hungry
* stuff like printing profile stats - a GC run would kill
- * resources - RT#46405 reset stacktop or better disable GC
+ * resources - RT #46405 reset stacktop or better disable GC
*/
/*
* we don't allow new exit_handlers being installed inside exit handlers
Modified: trunk/src/gc/malloc_trace.c
==============================================================================
--- trunk/src/gc/malloc_trace.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/gc/malloc_trace.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -40,7 +40,7 @@
=head1 DESCRIPTION
-RT#48264
+RT #48264
=head2 Functions
Modified: trunk/src/global.c
==============================================================================
--- trunk/src/global.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/global.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -478,7 +478,7 @@
Search the namespace PMC C<ns> for an object with name C<globalname>.
Return the object, or NULL if not found.
-TT#1222 - For now this function prefers non-namespaces, it will eventually
+TT #1222 - For now this function prefers non-namespaces, it will eventually
entirely use the untyped interface.
=cut
@@ -545,7 +545,7 @@
C<str_key> is NULL, for an object with name C<globalname>. Return the
object, or NULL if not found.
-TT#1222 - For now this function prefers non-namespaces, it will eventually
+TT #1222 - For now this function prefers non-namespaces, it will eventually
entirely use the untyped interface.
=cut
@@ -662,7 +662,7 @@
=item C<PMC * Parrot_find_name_op(PARROT_INTERP, STRING *name, void *next)>
-TT#1223 - THIS IS BROKEN - it doesn't walk up the scopes yet
+TT #1223 - THIS IS BROKEN - it doesn't walk up the scopes yet
Find the given C<name> in lexicals, then the current namespace, then the HLL
root namespace, and finally Parrot builtins. If the name isn't found
@@ -817,7 +817,7 @@
Parrot_store_global_n(interp, ns, ns_entry_name, sub_pmc);
- /* TT#1224:
+ /* TT #1224:
TEMPORARY HACK - cache invalidation should be a namespace function */
if (!PMC_IS_NULL(nsname)) {
STRING * const nsname_s = VTABLE_get_string(interp, nsname);
Modified: trunk/src/library.c
==============================================================================
--- trunk/src/library.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/library.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -782,7 +782,7 @@
must free it.
This function is deprecated, use Parrot_get_runtime_path instead.
-See RT#58988
+See RT #58988
=cut
Modified: trunk/src/ops/io.ops
==============================================================================
--- trunk/src/ops/io.ops Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/ops/io.ops Mon Nov 16 19:26:01 2009 (r42534)
@@ -49,7 +49,7 @@
Create ParrotIO object in $1 as a copy of file descriptor $2.
-RT#42373: integral file descriptors might not exist outside of the UNIX
+RT #42373: integral file descriptors might not exist outside of the UNIX
platform. This op needs work.
=cut
Modified: trunk/src/pbc_merge.c
==============================================================================
--- trunk/src/pbc_merge.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/pbc_merge.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -614,7 +614,7 @@
}
/* Update counts. The "- 1" allows for the fact that the size value
- itself is included in in_seg->base.size. See RT#58660. */
+ itself is included in in_seg->base.size. See RT #58660. */
num_lines += in_seg->base.size - 1;
num_mappings += in_seg->num_mappings;
}
Modified: trunk/src/pmc/eval.pmc
==============================================================================
--- trunk/src/pmc/eval.pmc Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/pmc/eval.pmc Mon Nov 16 19:26:01 2009 (r42534)
@@ -191,7 +191,7 @@
return;
}
- /* RT#46685 create PF API, move it there */
+ /* RT #46685 create PF API, move it there */
seg = (PackFile_Segment *)cur_cs->const_table;
if (seg) {
PackFile_Segment_destroy(INTERP, seg);
@@ -370,7 +370,7 @@
pf->directory.num_segments = 0;
/*
- * RT#46687 this isn't ok - it seems that the packfile
+ * RT #46687 this isn't ok - it seems that the packfile
* gets attached to interp->code and is
* destroyed again during interpreter destruction
*/
Modified: trunk/src/pmc/exception.pmc
==============================================================================
--- trunk/src/pmc/exception.pmc Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/pmc/exception.pmc Mon Nov 16 19:26:01 2009 (r42534)
@@ -633,7 +633,7 @@
}
else if (Parrot_str_equal(INTERP, name, CONST_STRING(INTERP, "thrower"))) {
/* Ensure it's a ret cont, and extract the from_ctx.
- * XXX TT#596 - when we have Context PMCs, just take and set that. */
+ * XXX TT #596 - when we have Context PMCs, just take and set that. */
if (!PMC_IS_NULL(value) && VTABLE_isa(interp, value, CONST_STRING(interp, "Continuation"))) {
PMC *ctx = PMC_cont(value)->from_ctx;
if (!PMC_IS_NULL(ctx))
Modified: trunk/src/pmc/file.pmc
==============================================================================
--- trunk/src/pmc/file.pmc Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/pmc/file.pmc Mon Nov 16 19:26:01 2009 (r42534)
@@ -22,7 +22,7 @@
# include <direct.h>
#endif
-/* RT#46681 apparently, strerror_r is thread-safe and should be used instead.*/
+/* RT #46681 apparently, strerror_r is thread-safe and should be used instead.*/
static PMC *File_PMC;
pmclass File singleton {
Modified: trunk/src/pmc/hashiteratorkey.pmc
==============================================================================
--- trunk/src/pmc/hashiteratorkey.pmc Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/pmc/hashiteratorkey.pmc Mon Nov 16 19:26:01 2009 (r42534)
@@ -36,7 +36,7 @@
Parrot_HashIteratorKey_attributes *attrs =
PARROT_HASHITERATORKEY(SELF);
- /* TT#1080 & TT#1081 Wallpapering problem with NULL attributes */
+ /* TT #1080 & TT #1081 Wallpapering problem with NULL attributes */
if (!attrs->parrot_hash || !attrs->bucket)
return PMCNULL;
@@ -64,7 +64,7 @@
Parrot_HashIteratorKey_attributes *attrs =
PARROT_HASHITERATORKEY(SELF);
- /* TT#1080 & TT#1081 Wallpapering problem with NULL attributes */
+ /* TT #1080 & TT #1081 Wallpapering problem with NULL attributes */
if (!attrs->parrot_hash || !attrs->bucket)
return CONST_STRING(INTERP, "");
Modified: trunk/src/string/charset.c
==============================================================================
--- trunk/src/string/charset.c Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/src/string/charset.c Mon Nov 16 19:26:01 2009 (r42534)
@@ -168,7 +168,7 @@
=item C<CHARSET * Parrot_load_charset(PARROT_INTERP, const char *charsetname)>
-Throws an exception (Can't load charsets dynamically yet. RT#58184).
+Throws an exception (Can't load charsets dynamically yet. RT #58184).
=cut
Modified: trunk/t/codingstd/linelength.t
==============================================================================
--- trunk/t/codingstd/linelength.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/codingstd/linelength.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -77,7 +77,7 @@
$line =~ s/\t/' ' x (1 + length($`) % 8)/eg; # expand \t
next if $line =~ m/https?:\/\//; # skip long web addresses
next if $line =~ m/\$Id:/;
- next if $line =~ m/CONST_STRING\(/; # see RT#60616, no line splits with CONST_STRING
+ next if $line =~ m/CONST_STRING\(/; # see RT #60616, no line splits with CONST_STRING
return sprintf '%s:%d: %d cols', $file, $., length($line)
if length($line) > $num_col_limit;
Modified: trunk/t/compilers/imcc/syn/pcc.t
==============================================================================
--- trunk/t/compilers/imcc/syn/pcc.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/compilers/imcc/syn/pcc.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -563,7 +563,7 @@
ok 2 - Unicode method names allowed
OUT
-pir_output_is( <<'CODE', <<'OUT', 'named parameters', todo => 'long version fails, TT# 1030');
+pir_output_is( <<'CODE', <<'OUT', 'named parameters', todo => 'long version fails, TT #1030');
.sub main
.local pmc foo
foo = get_global 'foo'
@@ -622,7 +622,7 @@
xyz:<\>
OUT
-pir_output_is( <<'CODE', <<'OUT', ':named should default to param name', todo=>'TT#1152');
+pir_output_is( <<'CODE', <<'OUT', ':named should default to param name', todo=>'TT #1152');
.sub main
$I0 = 'incr'('value'=>3)
say $I0
Modified: trunk/t/compilers/imcc/syn/regressions.t
==============================================================================
--- trunk/t/compilers/imcc/syn/regressions.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/compilers/imcc/syn/regressions.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -228,7 +228,7 @@
OUT
# We shouldn't crash (and valgrind shoudn't report invalid reads)
-pir_output_is( <<'CODE', <<'OUT', 'exit is last op in sub (TT#1009)');
+pir_output_is( <<'CODE', <<'OUT', 'exit is last op in sub (TT #1009)');
.sub main :main
exit 0
.end
Modified: trunk/t/op/number.t
==============================================================================
--- trunk/t/op/number.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/op/number.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -696,7 +696,7 @@
.return ()
negative_zero_todoed:
- todo(0, '-0.0 not implemented, TT#313')
+ todo(0, '-0.0 not implemented, TT #313')
.end
.sub test_mul_n_n
Modified: trunk/t/op/stringu.t
==============================================================================
--- trunk/t/op/stringu.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/op/stringu.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -550,7 +550,7 @@
OUT
}
-pir_output_is( <<'CODE', <<'OUT', 'concatenation of utf8 and iso-8859-1 (TT#752)' );
+pir_output_is( <<'CODE', <<'OUT', 'concatenation of utf8 and iso-8859-1 (TT #752)' );
.sub 'main'
$S1 = chr 0xe5
Modified: trunk/t/perl/Parrot_Test.t
==============================================================================
--- trunk/t/perl/Parrot_Test.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/perl/Parrot_Test.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -90,10 +90,10 @@
is( Parrot::Test::per_test( 0, undef ), undef, 'per_test() invalid second arg' );
is( Parrot::Test::per_test( undef, undef ), undef, 'per_test() two invalid args' );
-# RT#46893 test write_code_to_file(), plan(), skip(), slurp_file()
+# RT #46893 test write_code_to_file(), plan(), skip(), slurp_file()
# test the test functions from Parrot::Test
-# RT#46893: test the untested test functions
+# RT #46893: test the untested test functions
my ( $desc, $err, $line );
# PASM
Modified: trunk/t/pmc/float.t
==============================================================================
--- trunk/t/pmc/float.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/pmc/float.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -347,7 +347,7 @@
.return ()
negative_zero_todoed:
- todo(1, '-0.0 not implemented, TT#313')
+ todo(1, '-0.0 not implemented, TT #313')
.end
.sub 'equality'
Modified: trunk/t/pmc/packfile.t
==============================================================================
--- trunk/t/pmc/packfile.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/pmc/packfile.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -32,7 +32,7 @@
'test_load'()
'test_pack_fresh_packfile'()
'test_pack'()
- # This test will crash on many platforms. See TT#545.
+ # This test will crash on many platforms. See TT #545.
#'test_synonyms'()
.end
Modified: trunk/t/pmc/sub.t
==============================================================================
--- trunk/t/pmc/sub.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/pmc/sub.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -1592,7 +1592,7 @@
bazsubid
OUTPUT
-pir_output_is( <<'CODE', <<'OUTPUT', 'Thaw PIR subclass', todo => 'See TT#132' );
+pir_output_is( <<'CODE', <<'OUTPUT', 'Thaw PIR subclass', todo => 'See TT #132' );
.sub main :main
$P0 = get_class 'Sub'
Modified: trunk/t/run/options.t
==============================================================================
--- trunk/t/run/options.t Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/run/options.t Mon Nov 16 19:26:01 2009 (r42534)
@@ -91,7 +91,7 @@
like( qx{$cmd}, qr/Parrot VM: slow core/, "-r option <$cmd>" );
}
-## RT#46815 test remaining options
+## RT #46815 test remaining options
# clean up temporary files
unlink $first_pir_file;
Modified: trunk/t/tools/dev/searchops/samples.pm
==============================================================================
--- trunk/t/tools/dev/searchops/samples.pm Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/tools/dev/searchops/samples.pm Mon Nov 16 19:26:01 2009 (r42534)
@@ -55,7 +55,7 @@
=item B<load_bytecode>(in STR)
Load Parrot bytecode from file $1, and
-RT#42381 search the library path to locate the file.
+RT #42381 search the library path to locate the file.
=cut
Modified: trunk/t/tools/ops2pm/samples/core_ops.original
==============================================================================
--- trunk/t/tools/ops2pm/samples/core_ops.original Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/tools/ops2pm/samples/core_ops.original Mon Nov 16 19:26:01 2009 (r42534)
@@ -97,7 +97,7 @@
=item B<load_bytecode>(in STR)
Load Parrot bytecode from file $1, and
-RT#42381 search the library path to locate the file.
+RT #42381 search the library path to locate the file.
=cut
Modified: trunk/t/tools/ops2pm/samples/pic_ops.original
==============================================================================
--- trunk/t/tools/ops2pm/samples/pic_ops.original Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/t/tools/ops2pm/samples/pic_ops.original Mon Nov 16 19:26:01 2009 (r42534)
@@ -62,7 +62,7 @@
goto runit_v_pp;
mic->pic->miss_count++;
/*
- * RT#42353 if we got too often here just do a dynamic lookup
+ * RT #42353 if we got too often here just do a dynamic lookup
*/
}
parrot_pic_find_infix_v_pp(interp, left, right, mic, cur_opcode);
@@ -241,7 +241,7 @@
inline op pic_callr__(inconst PMC) :pic :flow {
Parrot_MIC *mic;
Parrot_PIC_lru *lru;
- void *args[6]; /* RT#42355 ARG_MAX */
+ void *args[6]; /* RT #42355 ARG_MAX */
parrot_context_t *ctx;
opcode_t *pc;
void **pred_pc;
@@ -290,7 +290,7 @@
pc = CUR_OPCODE + 2 + n_args + 3 + 3 + 2;
args[1 + n_args] = pc;
lru = &mic->lru;
- /* RT#42356 verify $1 didn't change */
+ /* RT #42356 verify $1 didn't change */
(void) ((interface_f)lru->f.real_function)(interp, sig_bits, args);
goto ADDRESS(pc);
}
Modified: trunk/tools/dev/mk_language_shell.pl
==============================================================================
--- trunk/tools/dev/mk_language_shell.pl Mon Nov 16 19:09:14 2009 (r42533)
+++ trunk/tools/dev/mk_language_shell.pl Mon Nov 16 19:26:01 2009 (r42534)
@@ -1092,7 +1092,7 @@
*/
- /* RT#48194: move any constant string declarations here so we just do them once. */
+ /* RT #48194: move any constant string declarations here so we just do them once. */
void class_init() {
}
@@ -1185,7 +1185,7 @@
} else if (new_size > old_size) {
pos = 0;
for (; new_size != old_size; old_size++, pos++) {
- /* RT#48196 clone this? */
+ /* RT #48196 clone this? */
VTABLE_push_pmc(INTERP, SELF,
VTABLE_get_pmc_keyed_int(INTERP, SELF, pos));
}
More information about the parrot-commits
mailing list