blob: be12a145b0ff9dd7dd0234714186dfa7c1a32fc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--- muttprint.orig Sun Feb 17 23:53:01 2002
+++ muttprint Mon Feb 18 00:00:39 2002
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/perl -w
#
# Hinweis: Tabulatorbreite: 4 Zeichen
# (automatische Einstellung für ViM durch letzte Zeile)
@@ -34,7 +34,7 @@
# Deklaration erzwingen
use strict;
# for developing and testing only
-use warnings;
+#use warnings;
# Deklaration nach Perl-5.005-Art
use vars qw($VERSION %String $LPack $charset);
use sigtrap qw(die INT QUIT);
@@ -185,8 +185,8 @@
if ($Config{'PENGUIN'} eq "on") {
$Config{'PENGUIN'} =
- -r "$share_dir/penguin.eps"
- ? "$share_dir/penguin.eps" : "off";
+ -r "$share_dir/Beastie.eps"
+ ? "$share_dir/Beastie.eps" : "off";
}
ReadConfig ($Config{RCFILE});
|