From: elmex Date: Mon, 2 Jan 2006 21:36:03 +0000 (+0000) Subject: fixed another small bug in selection:rot13 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=e95bc34125831d1de23eef527fd0a550415881b0;p=dana%2Furxvt.git fixed another small bug in selection:rot13 --- diff --git a/src/perl/selection b/src/perl/selection index 685d7cc0..424e0988 100644 --- a/src/perl/selection +++ b/src/perl/selection @@ -3,4 +3,6 @@ sub on_keyboard_command { $cmd eq "selection:rot13" and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->selection); + + () }