fixed code formatting
authorelmex <elmex>
Mon, 2 Jan 2006 21:35:01 +0000 (21:35 +0000)
committerelmex <elmex>
Mon, 2 Jan 2006 21:35:01 +0000 (21:35 +0000)
src/perl/selection

index 9189f597804598a91808f272b43f0f1635955d45..685d7cc049a54223096c109e4b3cb365632dfcd3 100644 (file)
@@ -1,5 +1,6 @@
 sub on_keyboard_command {
-      my ($term, $cmd) = @_;
-         $cmd eq "selection:rot13"
-                  and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->selection);
+   my ($term, $cmd) = @_;
+
+   $cmd eq "selection:rot13"
+      and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->selection);
 }