summaryrefslogtreecommitdiff
path: root/syntax.pl
diff options
context:
space:
mode:
authorAilin Nemui <ailin@linux.localdomain>2015-07-12 19:03:58 +0200
committerailin-nemui <ailin-nemui@users.noreply.github.com>2015-09-23 14:21:27 +0200
commitd3df165e0b067461e49d7f065f3820739e9ba229 (patch)
treec283a76daf1087529ca6a746328f0c4fc69a7a5e /syntax.pl
parentf247a43b97731cd1d58ec765dd2d10f885ef66dc (diff)
downloadirssi-d3df165e0b067461e49d7f065f3820739e9ba229.zip
Improve the WINDOW help
Properly describe the window command. Make help sort order deterministic.
Diffstat (limited to 'syntax.pl')
-rwxr-xr-xsyntax.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax.pl b/syntax.pl
index bf10451f..33bd12b4 100755
--- a/syntax.pl
+++ b/syntax.pl
@@ -10,7 +10,7 @@
# Remember to include the asterisk ('*').
$SRC_PATH='src';
-@files = `find src -name '*.c'`;
+@files = sort `find src -name '*.c'`;
foreach $file (@files) {
open (FILE, "$file");