ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection
Revision: 1.3
Committed: Mon Jan 2 21:36:03 2006 UTC (18 years, 4 months ago) by elmex
Branch: MAIN
Changes since 1.2: +2 -0 lines
Log Message:
fixed another small bug in selection:rot13

File Contents

# User Rev Content
1 elmex 1.1 sub on_keyboard_command {
2 elmex 1.2 my ($term, $cmd) = @_;
3    
4     $cmd eq "selection:rot13"
5     and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->selection);
6 elmex 1.3
7     ()
8 elmex 1.1 }