We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a6e575 commit b6a14aeCopy full SHA for b6a14ae
.dir-locals.el
@@ -14,4 +14,7 @@
14
(nxml-mode . (
15
(indent-tabs-mode . nil)
16
))
17
+ (perl-mode . (
18
+ (indent-tabs-mode . nil)
19
+ ))
20
)
src/check-symfile.pl
@@ -24,10 +24,10 @@
24
die "malformed line $_" unless /^\s*(\S+);$/;
25
26
if (exists $wantsyms{$1}) {
27
- print STDERR "Symbol $1 is listed twice\n";
28
- $ret = 1;
+ print STDERR "Symbol $1 is listed twice\n";
+ $ret = 1;
29
} else {
30
- $wantsyms{$1} = 1;
+ $wantsyms{$1} = 1;
31
}
32
33
close SYMFILE;
0 commit comments