wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit cb8d4bc6e9c3d32e98a77330cbfd5c328b8540b0
parent bbb684ec8e84e0f3e606ec068a8a4d5f08e054a2
Author: Kris Maglione <kris@suckless.org>
Date:   Mon, 26 Oct 2009 21:30:06 -0400

Fix minor error in last commit.

Diffstat:
man/wimenu.man1 | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man/wimenu.man1 b/man/wimenu.man1 @@ -136,8 +136,8 @@ wimenu -c <fifo | awk ' # Push out a new set of completions function update(str, opts) { - print length str >fifo # Print the length of the preceding string - print opts >fifo # and the options themself + print length(str) >fifo # Print the length of the preceding string + print opts >fifo # and the options themself fflush(fifo) }