summaryrefslogtreecommitdiffstats
path: root/fish/cmds_gperf.h
Commit message (Collapse)AuthorAgeFilesLines
* build: Rename most C files that contain underscore with dash.Richard W.M. Jones2012-07-191-44/+0
| | | | | | | This is just code motion. Some files cannot be renamed. Notably rpcgen input and output files must not contain dash characters, else rpcgen breaks.
* fish: Don't use external pod2text program.Richard W.M. Jones2010-11-261-4/+2
| | | | | | | This removes the dependency from guestfish to the external pod2text program (and hence the final dependency on perl for guestfish). This is done by storing the formatted pod2text output in guestfish as the help text.
* fish: Use a perfect hash for faster command lookups.Richard W.M. Jones2010-11-031-0/+46
Existing command lookups are approx O(n^2). Replace this with a perfect hash implementation which should be a lot faster.