[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.9.7-942-gbe2c908

Shawn Moore sartak at bestpractical.com
Fri Dec 17 20:03:42 EST 2010


The branch, 3.9-trunk has been updated
       via  be2c908e457b44cfd760907c94d55ff7fea7efbe (commit)
      from  a9a2c1761c7e395dda0ef7317af63912fbc9bc6b (commit)

Summary of changes:
 devel/extract-message-catalog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

- Log -----------------------------------------------------------------
commit be2c908e457b44cfd760907c94d55ff7fea7efbe
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Fri Dec 17 20:03:27 2010 -0500

    No need to sort keys if we're just filling out another hash

diff --git a/devel/extract-message-catalog b/devel/extract-message-catalog
index b06f61c..9d6eade 100755
--- a/devel/extract-message-catalog
+++ b/devel/extract-message-catalog
@@ -304,7 +304,7 @@ sub update {
 
     my $is_english = ( $lang =~ /^en(?:[^A-Za-z]|$)/ );
 
-    foreach my $str ( sort keys %{$FILECAT} ) {
+    foreach my $str ( keys %{$FILECAT} ) {
         $Lexicon{$str} ||= '';
     }
     foreach ( sort keys %Lexicon ) {

-----------------------------------------------------------------------


More information about the Rt-commit mailing list