Skip to content

Commit

Permalink
fvwm-convert-2.6: fix syntax error
Browse files Browse the repository at this point in the history
Noticed by AlaricToo on #fvwm IRC.
  • Loading branch information
ThomasAdam committed Feb 21, 2025
1 parent 49637b0 commit 44028d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/fvwm-convert-2.6.in
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ sub convert_desk
{
my( $line ) = @_;

$line =~ s/^\s*desk/GotoDesk/i;
$line =~ s/^\s*desk\s+/GotoDesk/i;

push( @converted_lines, $line);
}
Expand All @@ -217,7 +217,7 @@ sub convert_windowfont
{
my( $line ) = @_;

$line =~ s/windowfont/Style Font \*/i;
$line =~ s/windowfont/Style \* Font/i;

push( @converted_lines, $line );
}
Expand All @@ -227,7 +227,7 @@ sub convert_iconfont
{
my( $line ) = @_;

$line =~ s/iconfont/Style IconFont \*/i;
$line =~ s/iconfont/Style \* IconFont/i;

push( @converted_lines, $line );
}
Expand Down

0 comments on commit 44028d3

Please sign in to comment.