~ubuntu-branches/ubuntu/lucid/w3m/lucid-proposed

« back to all changes in this revision

Viewing changes to Symbols/sym.pl

  • Committer: Bazaar Package Importer
  • Author(s): Fumitoshi UKAI
  • Date: 2004-04-29 03:28:41 UTC
  • Revision ID: james.westby@ubuntu.com-20040429032841-uo4mu7a813aqrua8
Tags: upstream-0.5.1
ImportĀ upstreamĀ versionĀ 0.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
while(<>) {
 
3
        for(split('')) {
 
4
                $n = ord($_);
 
5
                if ($n & 0x80) {
 
6
                        printf("\\%.3o", $n);
 
7
                } else {
 
8
                        print $_;
 
9
                }
 
10
        }
 
11
}