Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-17 | Quit if write(2) returns -1 when writing to the tty, which can | Todd C. Miller | |
happen if the tty is revoked. OK deraadt@ | |||
2012-03-30 | make the description of -c a little saner; ok nicm | Jason McIntyre | |
2012-03-27 | Reverse the default of the -c flag from off to on to prevent the text | Nicholas Marriott | |
being displayed in the wrong place initially and then jumping when first redrawn (such as when searching). ok deraadt sthen | |||
2011-11-16 | Don't create a history file called -... doh. Pointed out by jmc. | Nicholas Marriott | |
2011-11-15 | Disable LESSHISTFILE by default, requested by deraadt. | Nicholas Marriott | |
2011-10-08 | return the old behaviour for "more": | Alexandr Shadchin | |
if you press F ^C, you would be left at a prompt at the end of the file. ok nicm@ | |||
2011-09-21 | Fix mismerged copyright notice | Todd C. Miller | |
Use strlcpy() not snprintf() to copy a simple string. OK deraadt@ | |||
2011-09-21 | Use volatile sig_atomic_t, not int, for the sigs variable. Also | Todd C. Miller | |
move the call to bell() out of u_interrupt() (a signal handler). OK and with help from deraadt@ | |||
2011-09-21 | Repair interrupted reads; fixes ^Z. OK deraadt@ | Todd C. Miller | |
2011-09-16 | tweak previous; | Jason McIntyre | |
2011-09-16 | add missing Makefile.inc | Alexandr Shadchin | |
2011-09-16 | Merge in less 444 plus local changes | Alexandr Shadchin | |
ok nicm@ | |||
2011-09-16 | Import of Less 444 | Alexandr Shadchin | |
ok nicm@ | |||
2011-05-02 | no need to escape `|'; as discussed with schwartze | Jason McIntyre | |
2011-02-03 | LC_TYPE -> LC_CTYPE; from Alexander Polakov | Jason McIntyre | |
2010-10-28 | more roff adjustments; | Jason McIntyre | |
2010-08-09 | Match -m prompt string in man page with code. From Daniel Malament | Ray Lai | |
danielm at bluetiger dot net, PR 6234. OK millert | |||
2010-08-09 | Remove extra `.' from -m prompt string. From Daniel Malament danielm | Ray Lai | |
at bluetiger dot net, PR 6234. OK millert | |||
2010-07-03 | use SMALL_PROGRAM to knock out some code | Theo de Raadt | |
2010-07-02 | tags.c isn't needed at all, so exclude the entire object instead of | Philip Guenthe | |
commenting it out top-to-bottom ok deraadt@ | |||
2010-04-09 | - fix up SYNOPSIS; it's not perfect yet though... | Jason McIntyre | |
- couple of other tweaks while in here | |||
2010-02-28 | %t didn't properly remove trailing spaces from the end of the prompt. | Jasper Lievisse Adriaanse | |
patch from daniel malament in pr 6235 ok millert@ | |||
2009-10-22 | use the UNIX-related macros (.At and .Ux) where appropriate. | Igor Sobrado | |
ok jmc@ | |||
2009-02-10 | STANDARDS: | Jason McIntyre | |
mark these utilities as being either optional (SD/FR/UP); or as being compliant only with XPG4 (XSI); strip.1 and talk.1 are tweaked purely for consistency; thanks otto for feedback | |||
2009-02-08 | bump the posix reference in STANDARDS to IEEE Std 1003.1-2008, with a few | Jason McIntyre | |
updates to follow; | |||
2007-11-24 | some spelling fixes from Martynas Venckus | Jason McIntyre | |
2007-11-03 | main build can only happen after configure has run. | Marc Espie | |
2007-05-31 | convert to new .Dd format; | Jason McIntyre | |
2007-05-30 | some i missed... | Jason McIntyre | |
- consistent text for STANDARDS - note which options are extensions to POSIX | |||
2007-04-19 | Update to less version 382. This removes some code that is licensed under | Marc Balmer | |
a non-BSD license and which was not used on OpenBSD. No functional changes. From Daniel Dickmann <didickman@gmail.com>, ok itojun, millert, ray, matthieu | |||
2007-03-20 | remove some bogus *p tests from charles longeau | Ted Unangst | |
ok deraadt millert | |||
2007-03-15 | sort options; from Igor Sobrado | Jason McIntyre | |
2006-12-06 | Don't access buf[strlen(buf) - 1] for zero-length strings. | Ray Lai | |
OK jaredy@. | |||
2006-10-14 | Allow less to build in Makefile.cross environment. | Dale Rahn | |
2006-10-10 | Fix an instance of foo[strlen(foo) - 1] = something, which is dangerous | Chad Loder | |
because strlen(foo) could be 0. OK beck@ | |||
2006-05-26 | remove references to CRTs where they no longer make sense; | Jason McIntyre | |
tweaked by mickey/krw ok deraadt | |||
2006-05-23 | Fix removing of trailing space in file name completion list. | Otto Moerbeek | |
From Matthew Haub; ok krw@ | |||
2006-04-02 | use SEEK_* for lseek() | Theo de Raadt | |
2006-01-11 | Fix recovery of realloc failure, which causes a segv on files with | Otto Moerbeek | |
very lone lines, as reported by Steffen Wendzel. ok deraadt@ | |||
2005-08-27 | Fix off-by-one when moving a line to the end of the buffer. Instead | Todd C. Miller | |
of doing our own memmove() (incorrectly) just use memmove(). Bug found by Matthias Scheler <tron@zhadum.de>. OK deraadt@ henning@ krw@ | |||
2005-04-11 | use STDERR_FILENO; ok cloder | Theo de Raadt | |
2004-12-30 | these pages already have their copyrights contained within the main | Jason McIntyre | |
body of the page, commented out; no point in giving them their own COPYRIGHT sections, so remove them; | |||
2004-12-19 | use strchr instead of index | Theo de Raadt | |
2004-11-29 | Spell precede correctly. | Jonathan Gray | |
'looks fine' millert@, krw@. ok jmc@ | |||
2004-08-23 | Do %s replacement for LESSOPEN and LESSCLOSE ourselves instead | Todd C. Miller | |
of using snprintf(). Based on a patch from Brent Graveland. Ok tdeval@ and otto@ | |||
2004-04-25 | isprint() doesn't consider all whitespace to be printable so use | Todd C. Miller | |
isspace() too. Problem noticed by cedric@ and diagnosed by deraadt@. OK deraadt@. | |||
2004-04-08 | When reallocating the line buffer, double the existing buffer | Todd C. Miller | |
size instead of just incrementing it by LINEBUF_SIZE and use realloc() + memset() instead of calloc() + memcpy(). Prevents excessive resource usage when displaying very long lines. OK deraadt@, krw@ and otto@ | |||
2004-02-20 | uppercase CRT; | Jason McIntyre | |
2004-01-23 | `Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8)) | Jason McIntyre | |
discussed with todd@ | |||
2003-11-30 | - .Sh WARNINGS -> standard .Sh CAVEATS | Jason McIntyre | |
- tidy up AUTHORS - standard section order - kill whitespace at EOL |