swerc

anselm's simpler werc fork
git clone git://git.suckless.org/swerc
Log | Files | Refs | README

commit c04f399c2e9a6e1cf5702a267f1ef00cbd806443
parent fe8c2a8714b2c6b42425267112462ba3a7deab8a
Author: uriel@suckless.org <unknown>
Date:   Sun, 15 Jun 2008 20:41:32 +0200

Fix silly syntax error, thanks anothy for the bug repport and squeek for the fix
Diffstat:
Mbin/controller.rc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/controller.rc b/bin/controller.rc @@ -32,7 +32,7 @@ dirfilter = '/\/[._]/d; s,^\./,,; s,\.md$,,; s,\.html,,;' fn menu { lsArgs = ( '-F' ) # XXX will not work properly for $#blogDirs > 1 and matching is hackish - if ( (!~ $#inBlog 0) || ! ~ $#blogDirs 0 && (~ $blogDirs^/ *$1 *$1/) ) { # Work in progress XXX + if ( (! ~ $#inBlog 0) || ! ~ $#blogDirs 0 && (~ $blogDirs^/ *$1 *$1/) ) { # Work in progress XXX lsArgs = ($lsArgs -r) }