fluxbox fork with a slight change to maximized windows
Find a file
Mathias Gumz 533c9a2aa5 Fix bug in detecting text in MenuSearch
A bug sneaked into my implementation of Boyer-Moore-Horspool. This lead
to not finding certain patterns. Given the text 'abcdde' and the pattern
'dd', the faulty implementation would not find 'dd':

1. 'ab' does not match, skip 2 (length of pattern)
2. 'cd' does not match, skip 2 (length of pattern) <- the bug.
3. 'de' does not match, end of string

The bug in step 2 is to not use 'd' to detect how far to skip but to
use 'c' (which is not in the skip-table) and thus 2 bytes are skipped).
2015-05-02 14:04:50 +02:00
3rd/vim
build-aux
data Fix build-system: install data files (keys, apps, menu ...) 2015-01-05 15:08:32 +01:00
doc Prepare manpages for 1.3.7 2015-02-08 11:20:53 +01:00
nls
src Fix bug in detecting text in MenuSearch 2015-05-02 14:04:50 +02:00
util
.gitignore
.mailmap
AUTHORS
autogen.sh
ChangeLog Final notes 2015-02-08 11:44:34 +01:00
configure.ac
COPYING
Doxyfile
INSTALL
Makefile.am
NEWS Final notes 2015-02-08 11:44:34 +01:00
README
TODO
version.h.in

Fluxbox is a windowmanager for X that was based on the Blackbox 0.61.1 code.
It is very light on resources and easy to handle but yet full of features to
make an easy, and extremely fast, desktop experience.

Read INSTALL to read about building and installing fluxbox. Read NEWS to see
whats new in this release, for copyright information see COPYING. For more
information go to:

    http://fluxbox.org/

Thanks:

  Blackbox team

  People at #fluxbox on the irc.freenode.net irc-network.

  And all the people who sent bugfixes/patches and helped us making
  Fluxbox a better application, see AUTHORS for a incomplete list
  of people who helped fluxbox.