| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
- Copyright year bump
- The tabsize is now set equal to shiftwidth when expandtabs
is true, so that the Tab key in Vim produces shiftwidth
spacing, not 8 spaces.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
These show up when compiled with -Wall -W options of gcc.
Note: the code captures the return values of strlen and strspn
in signed variables of type long on purpose, so that some of
the arithmetic and comparisons are done sanely around zero.
We don't expect the values to go anywhere near 32 or 64 bit
wraparound limits; the casts will never produce a negative
value in any reasonable use of the program.
In this patch we make that more consistent: a couple of
lengths were captured in size_t variables; now they are
long. One remaining signed/unsigned comparison warning is
squelched with a cast.
|
|
|
|
| |
Reported by Stan Marsh.
|
| |
|
|
|
|
|
| |
Support --version option. Put in correct copyright.
Change e-mail address to kylheku.com.
|
| |
|
| |
|
|
|
|
|
| |
Previously we assumed hard tabs upon finding just
one hard tab in the file.
|
| |
|
|
|