diff options
author | Ailin Nemui <ailin@linux.localdomain> | 2015-07-12 19:03:58 +0200 |
---|---|---|
committer | ailin-nemui <ailin-nemui@users.noreply.github.com> | 2015-09-23 14:21:27 +0200 |
commit | d3df165e0b067461e49d7f065f3820739e9ba229 (patch) | |
tree | c283a76daf1087529ca6a746328f0c4fc69a7a5e /syntax.pl | |
parent | f247a43b97731cd1d58ec765dd2d10f885ef66dc (diff) | |
download | irssi-d3df165e0b067461e49d7f065f3820739e9ba229.zip |
Improve the WINDOW help
Properly describe the window command.
Make help sort order deterministic.
Diffstat (limited to 'syntax.pl')
-rwxr-xr-x | syntax.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |