summaryrefslogtreecommitdiffstats
path: root/fish/man.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove "convenience header" "gettext.h" and use <libintl.h> instead.Richard W.M. Jones2012-05-011-0/+1
| | | | | | | | | | | | gettextize provides a local file called "gettext.h". Remove this and use <libintl.h> from glibc headers instead. Most of this change is mechanical: #include <libintl.h> in every C file which uses any gettext function. But also we remove the gettext.h file, and adjust the "_" macros. Note that this effectively removes the ./configure --disable-nls option, although we don't know if that ever worked.
* Tempus fugit.Richard W.M. Jones2012-01-181-1/+1
| | | | Update all copyright dates to 2012.
* Update FSF address.Matthew Booth2011-11-081-1/+1
|
* Add missing include directives.Jim Meyering2011-04-131-1/+2
| | | | | | * fish/config.c: Include string.h, for use of strlen. * fish/keys.c: Likewise, but for use of memcpy. * fish/man.c: Likewise, but for use of memset.
* fish: Change 'int argc' to 'size_t argc' throughout.Richard W.M. Jones2010-10-211-1/+1
|
* generator: Generate guestfish-only commands.Richard W.M. Jones2010-09-181-1/+1
| | | | | | The guestfish-only commands such as 'alloc' and 'edit' are now generated from one place in the generator instead of being spread around ad-hoc in the C code.
* fish: Add 'man' command which opens the manual.Richard Jones2010-04-241-0/+58