Skip to content

Commit 897d9d3

Browse files
committed
Make xpixmaps.c generation deterministic
Sort the keys of %xstates to ensure a deterministic output.
1 parent 1a9340e commit 897d9d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/xlib/xstatusbar.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
#print "};\n";
4141

4242

43-
my $xstates = join(', ', keys %xstates);
43+
my $xstates = join(', ', sort keys %xstates);
4444
my $idx = 1000;
4545
my $w;
4646
foreach(sort keys %xoverlay) {

0 commit comments

Comments
 (0)