~kklimonda/ubuntu/lucid/rxvt-unicode/lp-514821

« back to all changes in this revision

Viewing changes to src/perl/selection-pastebin

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2006-09-01 14:44:58 UTC
  • mfrom: (1.1.8 upstream) (3.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060901144458-98hrz8zg01w8a3vy
Tags: 7.9-2
* Edit the comments in the app-defaults file, and disable all settings by
  default. If font autoselection fails, I would prefer to open a new bug
  specifically for that. (Closes: #385481)
* Reorganize and edit README.Debian, pushing as much as possible into FAQ
  format (with resource setting issues first).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
   require Digest::MD5;
7
7
 
8
8
   my $txt = $self->selection;
9
 
   my $filename = Digest::MD5::md5_hex ($txt) . ".txt";
 
9
 
 
10
   my $filename = $txt;
 
11
   utf8::encode $filename;
 
12
   $filename = Digest::MD5::md5_hex ($filename) . ".txt";
10
13
 
11
14
   my $tmpfile = "/tmp/$filename";
12
15