Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Call setlocale() with category LC_ALL instead of LC_MESSAGES. We need | tjr | 2004-07-12 | 1 | -1/+1 |
| | | | | | | LC_CTYPE and LC_COLLATE to correctly interpret regular expressions returned by nl_langinfo(YESEXPR), and it doesn't hurt to include the rest. | ||||
* | Respect locale settings from the environment. | tjr | 2004-07-12 | 1 | -0/+3 |
| | |||||
* | Fix a few cases that relied on 'implicit int' (constraint violation in C99). | stefanf | 2004-07-11 | 2 | -1/+2 |
| | |||||
* | Fix document year. | tjr | 2004-07-11 | 1 | -1/+1 |
| | | | | Noticed by: simon | ||||
* | Add fairly standard ENVIRONMENT and DIAGNOSTICS sections. | tjr | 2004-07-11 | 1 | -1/+12 |
| | |||||
* | Respect locale settings from the environment. | tjr | 2004-07-11 | 1 | -0/+3 |
| | |||||
* | Add POSIX-style support for multibyte characters to od(1): the 'c' | tjr | 2004-07-11 | 4 | -11/+114 |
| | | | | | | conversion interprets input bytes as multibyte sequences and displays printable characters in the area corresponding to their first byte. The remaining bytes are shown as "**". | ||||
* | Add a reference to od(1). | tjr | 2004-07-10 | 1 | -2/+3 |
| | |||||
* | Decode the "wence" arg to lseek and linux_lseek. | alfred | 2004-07-10 | 2 | -2/+16 |
| | |||||
* | Initialize cs_invert to "false" in new csets. | tjr | 2004-07-10 | 1 | -0/+1 |
| | |||||
* | Report input errors instead of ignoring them. | tjr | 2004-07-09 | 1 | -0/+8 |
| | |||||
* | Update for multibyte character support: remove BUGS and change the | tjr | 2004-07-09 | 1 | -7/+2 |
| | | | | description of the -c option to refer to "values" instead of "byte values". | ||||
* | Add support for multibyte characters. The challenge here was to use | tjr | 2004-07-09 | 8 | -200/+880 |
| | | | | | | | | | | | | | | data structures that scale better with large character sets, instead of arrays indexed by character value: - Sets of characters to delete/squeeze are stored in a new "cset" structure, which is implemented as a splay tree of extents. This structure has the ability to store character classes (ala wctype(3)), but this is not currently fully utilized. - Mappings between characters are stored in a new "cmap" structure, which is also a splay tree. - The parser no longer builds arrays containing all the characters in a particular class; instead, next() determines them on-the-fly using nextwctype(3). | ||||
* | Build upon the nice work of Alfred and add sorting capabilities to | keramida | 2004-07-08 | 1 | -3/+77 |
| | | | | | | the -m "io" mode of top. Approved by: alfred | ||||
* | Make bluetooth compile on all platforms | emax | 2004-07-07 | 1 | -3/+4 |
| | | | | Reviewed by: imp, ru | ||||
* | Correct a minor syntax mistake. | keramida | 2004-07-07 | 1 | -1/+1 |
| | | | | | | PR: docs/67458 Submitted by: Michel Lavondes <fox@vader.aacc.cc.md.us> MFC after: 3 days | ||||
* | mdoc(7) fixes. | ru | 2004-07-07 | 4 | -6/+6 |
| | |||||
* | Fixed bad example. | ru | 2004-07-07 | 1 | -1/+2 |
| | | | | Added reference to the getopts(1) shell builtin. | ||||
* | Fix the NAME section making whatis(1) happy in particular. | ru | 2004-07-05 | 1 | -1/+1 |
| | |||||
* | Additional preemptive unsigned -> signed casts. | des | 2004-07-05 | 1 | -4/+4 |
| | |||||
* | ki_pctcpu is unsigned, so we cast to long before subtracting. | des | 2004-07-05 | 1 | -1/+1 |
| | |||||
* | Unhealthy amount of manual code cleanup. Some long lines still remain. | des | 2004-07-05 | 1 | -187/+143 |
| | |||||
* | Add support for multibyte characters. | tjr | 2004-07-05 | 2 | -11/+73 |
| | |||||
* | Apply consistent indentation. Long lines will be fixed in a separate | des | 2004-07-05 | 1 | -544/+543 |
| | | | | commit. | ||||
* | Protoize. | des | 2004-07-05 | 1 | -45/+19 |
| | |||||
* | Sort out the #include mess. In particular, do not #include "os.h", since | des | 2004-07-05 | 1 | -18/+10 |
| | | | | all it does is provide broken prototypes for standard library functions. | ||||
* | Mechanical whitespace cleanup. | des | 2004-07-05 | 1 | -26/+25 |
| | |||||
* | My previous commit fixed uid filtering, but broke io mode. Unravel the | des | 2004-07-05 | 1 | -35/+49 |
| | | | | process filtering logic to prevent this from happening again. | ||||
* | Fix selecting processes by uid, which was broken in the previous commit. | des | 2004-07-05 | 1 | -1/+1 |
| | |||||
* | Truncate long file names in stat_display(), as was originally intended. | des | 2004-07-05 | 1 | -1/+1 |
| | | | | MFC after: 1 week | ||||
* | Fixed cross-references in SEE ALSO. | ru | 2004-07-04 | 1 | -1/+1 |
| | | | | Emininated double space and hard sentence breaks. | ||||
* | Sort SEE ALSO references (in dictionary order, ignoring case). | ru | 2004-07-04 | 3 | -6/+6 |
| | |||||
* | Pass the pointy hat, please: | kientzle | 2004-07-04 | 1 | -2/+2 |
| | | | | All of --help should go to stdout, not some to stdout and some to stderr. | ||||
* | Consistently use __inline instead of __inline__ as the former is an empty macro | stefanf | 2004-07-04 | 1 | -1/+1 |
| | | | | in <sys/cdefs.h> for compilers without support for inline. | ||||
* | Fix a markup nit and a misplaced full stop in previous. | tjr | 2004-07-03 | 1 | -2/+2 |
| | | | | Noticed by: ru | ||||
* | Document missing multibyte character support in utilities specified | tjr | 2004-07-03 | 11 | -10/+53 |
| | | | | by POSIX. | ||||
* | Re-add half of UCB copyright notice that went missing in 1.20. | tjr | 2004-07-03 | 1 | -0/+1 |
| | |||||
* | Deal with double whitespace. | ru | 2004-07-03 | 31 | -110/+112 |
| | |||||
* | Add support for multibyte characters. | tjr | 2004-07-02 | 2 | -35/+41 |
| | |||||
* | Document the -i option as being a non-standard extension. | tjr | 2004-07-02 | 1 | -0/+6 |
| | |||||
* | Add support for multibyte characters. | tjr | 2004-07-02 | 2 | -33/+47 |
| | |||||
* | Nit. | ru | 2004-07-02 | 1 | -1/+1 |
| | |||||
* | Fix after rev. 1.24 changes: bump document date, and remove -c | ru | 2004-07-02 | 1 | -2/+2 |
| | | | | from SYNOPSIS. | ||||
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 81 | -499/+973 |
| | |||||
* | Deal with unsafe tab characters. | ru | 2004-07-02 | 1 | -1/+3 |
| | |||||
* | mdoc(7): Fixed list types. | ru | 2004-07-02 | 1 | -2/+2 |
| | |||||
* | Removed trailing whitespace. | ru | 2004-07-02 | 3 | -6/+6 |
| | |||||
* | Fixed spelling of the document date. | ru | 2004-07-02 | 1 | -1/+1 |
| | |||||
* | manlint | eik | 2004-07-02 | 1 | -6/+5 |
| | | | | Obtained from: ru | ||||
* | New variable `.MAKEFILE_LIST', useful for tracing, debugging and dependency ↵ | eik | 2004-07-02 | 2 | -3/+30 |
| | | | | | | | | | | | tracking. Use make -V .MAKEFILE_LIST | tr \ \\n | awk '$0==".." {l--; next} {l++; printf "%*s%s\n", l, " ", $0}' to print a tree of all included makefiles. Approved by: joerg MFC after: 1 week |