mirror of https://github.com/nirenjan/dotfiles.git
Ignore COLOR, OPTIONS and EIGHTBIT keywords
parent
26e51adc9f
commit
92c27287b8
|
@ -29,8 +29,9 @@ while ($line = <DCFILE>) {
|
||||||
if ($line ne '') {
|
if ($line ne '') {
|
||||||
($type, $format) = split /\s+/, $line;
|
($type, $format) = split /\s+/, $line;
|
||||||
|
|
||||||
# Ignore the TERM lines, we don't care about them here
|
# Ignore the following lines, we don't care about them here
|
||||||
next if ($type eq 'TERM');
|
next if (($type eq 'TERM') || ($type eq 'COLOR') ||
|
||||||
|
($type eq 'OPTIONS') || ($type eq 'EIGHTBIT'));
|
||||||
|
|
||||||
# Just a little enhancement, if the type begins with a .
|
# Just a little enhancement, if the type begins with a .
|
||||||
if ($type =~ m/^\./) {
|
if ($type =~ m/^\./) {
|
||||||
|
|
Loading…
Reference in New Issue