mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
Virgin import of less v416.
This commit is contained in:
parent
9b045eb7f4
commit
33a9f6ab73
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/vendor/less/dist/; revision=173932 svn path=/vendor/less/v416/; revision=173934; tag=vendor/less/v416
@ -13,7 +13,7 @@
|
||||
======================================================================
|
||||
|
||||
|
||||
Major changes between "less" versions 409 and 415
|
||||
Major changes between "less" versions 409 and 416
|
||||
|
||||
* New --follow-name option makes F command follow the name of a file
|
||||
rather than the file descriptor if an open file is renamed.
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
Less, version 415
|
||||
Less, version 416
|
||||
|
||||
This is the distribution of less, version 415, released 15 Nov 2007.
|
||||
This is the distribution of less, version 416, released 22 Nov 2007.
|
||||
This program is part of the GNU project (http://www.gnu.org).
|
||||
|
||||
This program is free software. You may redistribute it and/or
|
||||
|
@ -445,8 +445,8 @@ LESS(1) LESS(1)
|
||||
buffer space is used for each file (unless the file is a pipe;
|
||||
see the -B option). The -b option specifies instead that [4mn[0m
|
||||
kilobytes of buffer space should be used for each file. If [4mn[24m is
|
||||
-1, buffer space is unlimited; that is, the entire file is read
|
||||
into memory.
|
||||
-1, buffer space is unlimited; that is, the entire file can be
|
||||
read into memory.
|
||||
|
||||
-B or --auto-buffers
|
||||
By default, when data is read from a pipe, buffers are allocated
|
||||
@ -456,8 +456,8 @@ LESS(1) LESS(1)
|
||||
buffers for pipes, so that only 64K (or the amount of space
|
||||
specified by the -b option) is used for the pipe. Warning: use
|
||||
of -B can result in erroneous display, since only the most
|
||||
recently viewed part of the file is kept in memory; any earlier
|
||||
data is lost.
|
||||
recently viewed part of the piped data is kept in memory; any
|
||||
earlier data is lost.
|
||||
|
||||
-c or --clear-screen
|
||||
Causes full screen repaints to be painted from the top line
|
||||
@ -533,23 +533,24 @@ LESS(1) LESS(1)
|
||||
|
||||
-j[4mn[24m or --jump-target=[4mn[0m
|
||||
Specifies a line on the screen where the "target" line is to be
|
||||
positioned. A target line is the object of a text search, tag
|
||||
search, jump to a line number, jump to a file percentage, or
|
||||
jump to a marked position. The screen line may be specified by
|
||||
a number: the top line on the screen is 1, the next is 2, and so
|
||||
on. The number may be negative to specify a line relative to
|
||||
the bottom of the screen: the bottom line on the screen is -1,
|
||||
the second to the bottom is -2, and so on. Alternately, the
|
||||
screen line may be specified as a fraction of the height of the
|
||||
screen, starting with a decimal point: .5 is in the middle of
|
||||
the screen, .3 is three tenths down from the first line, and so
|
||||
on. If the line is specified as a fraction, the actual line
|
||||
positioned. The target line is the line specified by any com-
|
||||
mand to search for a pattern, jump to a line number, jump to a
|
||||
file percentage or jump to a tag. The screen line may be speci-
|
||||
fied by a number: the top line on the screen is 1, the next is
|
||||
2, and so on. The number may be negative to specify a line rel-
|
||||
ative to the bottom of the screen: the bottom line on the screen
|
||||
is -1, the second to the bottom is -2, and so on. Alternately,
|
||||
the screen line may be specified as a fraction of the height of
|
||||
the screen, starting with a decimal point: .5 is in the middle
|
||||
of the screen, .3 is three tenths down from the first line, and
|
||||
so on. If the line is specified as a fraction, the actual line
|
||||
number is recalculated if the terminal window is resized, so
|
||||
that the target line remains at the specified fraction of the
|
||||
screen height. If the -j option is used, searches begin at the
|
||||
line immediately after the target line. For example, if "-j4"
|
||||
is used, the target line is the fourth line on the screen, so
|
||||
searches begin at the fifth line on the screen.
|
||||
screen height. If any form of the -j option is used, forward
|
||||
searches begin at the line immediately after the target line,
|
||||
and backward searches begin at the target line. For example, if
|
||||
"-j4" is used, the target line is the fourth line on the screen,
|
||||
so forward searches begin at the fifth line on the screen.
|
||||
|
||||
-J or --status-column
|
||||
Displays a status column at the left edge of the screen. The
|
||||
@ -568,7 +569,8 @@ LESS(1) LESS(1)
|
||||
Causes [4mless[24m to exit immediately when an interrupt character
|
||||
(usually ^C) is typed. Normally, an interrupt character causes
|
||||
[4mless[24m to stop whatever it is doing and return to its command
|
||||
prompt.
|
||||
prompt. Note that use of this option makes it impossible to
|
||||
return to the command prompt from the "F" command.
|
||||
|
||||
-L or --no-lessopen
|
||||
Ignore the LESSOPEN environment variable (see the INPUT PREPRO-
|
||||
@ -739,8 +741,8 @@ LESS(1) LESS(1)
|
||||
-x[4mn[24m,... or --tabs=[4mn[24m,...
|
||||
Sets tab stops. If only one [4mn[24m is specified, tab stops are set
|
||||
at multiples of [4mn[24m. If multiple values separated by commas are
|
||||
specified, tab stops are set at those positions, and then
|
||||
continue with the same spacing as the last two. For example,
|
||||
specified, tab stops are set at those positions, and then con-
|
||||
tinue with the same spacing as the last two. For example,
|
||||
[4m-x9,17[24m will set tabs at positions 9, 17, 25, 33, etc. The
|
||||
default for [4mn[24m is 8.
|
||||
|
||||
@ -1159,10 +1161,10 @@ LESS(1) LESS(1)
|
||||
is followed by a single character (shown as [4mX[24m above) which spec-
|
||||
ifies the line whose byte offset is to be used. If the charac-
|
||||
ter is a "t", the byte offset of the top line in the display is
|
||||
used, an "m" means use the middle line, a "b" means use the
|
||||
bottom line, a "B" means use the line just after the bottom
|
||||
line, and a "j" means use the "target" line, as specified by the
|
||||
-j option.
|
||||
used, an "m" means use the middle line, a "b" means use the bot-
|
||||
tom line, a "B" means use the line just after the bottom line,
|
||||
and a "j" means use the "target" line, as specified by the -j
|
||||
option.
|
||||
|
||||
%B Replaced by the size of the current input file.
|
||||
|
||||
@ -1509,10 +1511,10 @@ LESS(1) LESS(1)
|
||||
expressions turned off via ^R, and also does not occur when [4mless[24m is
|
||||
compiled to use the PCRE regular expression library.
|
||||
|
||||
In certain cases, when search highlighting is enabled and a search
|
||||
pattern begins with a ^, more text than the matching string may be
|
||||
highlighted. (This problem does not occur when less is compiled to use
|
||||
the POSIX regular expression package.)
|
||||
In certain cases, when search highlighting is enabled and a search pat-
|
||||
tern begins with a ^, more text than the matching string may be high-
|
||||
lighted. (This problem does not occur when less is compiled to use the
|
||||
POSIX regular expression package.)
|
||||
|
||||
On some systems, [4msetlocale[24m claims that ASCII characters 0 thru 31 are
|
||||
control characters rather than binary characters. This causes [4mless[24m to
|
||||
@ -1554,4 +1556,4 @@ LESS(1) LESS(1)
|
||||
|
||||
|
||||
|
||||
Version 415: 15 Nov 2007 LESS(1)
|
||||
Version 416: 22 Nov 2007 LESS(1)
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH LESS 1 "Version 415: 15 Nov 2007"
|
||||
.TH LESS 1 "Version 416: 22 Nov 2007"
|
||||
.SH NAME
|
||||
less \- opposite of more
|
||||
.SH SYNOPSIS
|
||||
@ -462,7 +462,7 @@ By default 64K of buffer space is used for each file
|
||||
The \-b option specifies instead that \fIn\fP kilobytes of
|
||||
buffer space should be used for each file.
|
||||
If \fIn\fP is \-1, buffer space is unlimited; that is,
|
||||
the entire file is read into memory.
|
||||
the entire file can be read into memory.
|
||||
.IP "\-B or \-\-auto-buffers"
|
||||
By default, when data is read from a pipe,
|
||||
buffers are allocated automatically as needed.
|
||||
@ -473,7 +473,7 @@ so that only 64K
|
||||
(or the amount of space specified by the \-b option)
|
||||
is used for the pipe.
|
||||
Warning: use of \-B can result in erroneous display, since only the
|
||||
most recently viewed part of the file is kept in memory;
|
||||
most recently viewed part of the piped data is kept in memory;
|
||||
any earlier data is lost.
|
||||
.IP "\-c or \-\-clear-screen"
|
||||
Causes full screen repaints to be painted from the top line down.
|
||||
@ -555,9 +555,9 @@ the pattern contains uppercase letters.
|
||||
.IP "\-j\fIn\fP or \-\-jump-target=\fIn\fP"
|
||||
Specifies a line on the screen where the "target" line
|
||||
is to be positioned.
|
||||
A target line is the object of a text search,
|
||||
tag search, jump to a line number,
|
||||
jump to a file percentage, or jump to a marked position.
|
||||
The target line is the line specified by any command to
|
||||
search for a pattern, jump to a line number,
|
||||
jump to a file percentage or jump to a tag.
|
||||
The screen line may be specified by a number: the top line on the screen
|
||||
is 1, the next is 2, and so on.
|
||||
The number may be negative to specify a line relative to the bottom
|
||||
@ -569,10 +569,11 @@ screen, .3 is three tenths down from the first line, and so on.
|
||||
If the line is specified as a fraction, the actual line number
|
||||
is recalculated if the terminal window is resized, so that the
|
||||
target line remains at the specified fraction of the screen height.
|
||||
If the \-j option is used, searches begin at the line immediately
|
||||
after the target line.
|
||||
If any form of the \-j option is used,
|
||||
forward searches begin at the line immediately after the target line,
|
||||
and backward searches begin at the target line.
|
||||
For example, if "\-j4" is used, the target line is the
|
||||
fourth line on the screen, so searches begin at the fifth line
|
||||
fourth line on the screen, so forward searches begin at the fifth line
|
||||
on the screen.
|
||||
.IP "\-J or \-\-status-column"
|
||||
Displays a status column at the left edge of the screen.
|
||||
@ -597,6 +598,8 @@ to exit immediately when an interrupt character (usually ^C) is typed.
|
||||
Normally, an interrupt character causes
|
||||
.I less
|
||||
to stop whatever it is doing and return to its command prompt.
|
||||
Note that use of this option makes it impossible to return to the
|
||||
command prompt from the "F" command.
|
||||
.IP "\-L or \-\-no-lessopen"
|
||||
Ignore the LESSOPEN environment variable
|
||||
(see the INPUT PREPROCESSOR section below).
|
||||
|
@ -46,4 +46,4 @@ LESSECHO(1) LESSECHO(1)
|
||||
|
||||
|
||||
|
||||
Version 415: 15 Nov 2007 LESSECHO(1)
|
||||
Version 416: 22 Nov 2007 LESSECHO(1)
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH LESSECHO 1 "Version 415: 15 Nov 2007"
|
||||
.TH LESSECHO 1 "Version 416: 22 Nov 2007"
|
||||
.SH NAME
|
||||
lessecho \- expand metacharacters
|
||||
.SH SYNOPSIS
|
||||
|
@ -357,4 +357,4 @@ LESSKEY(1) LESSKEY(1)
|
||||
|
||||
|
||||
|
||||
Version 415: 15 Nov 2007 LESSKEY(1)
|
||||
Version 416: 22 Nov 2007 LESSKEY(1)
|
||||
|
@ -1,4 +1,4 @@
|
||||
.TH LESSKEY 1 "Version 415: 15 Nov 2007"
|
||||
.TH LESSKEY 1 "Version 416: 22 Nov 2007"
|
||||
.SH NAME
|
||||
lesskey \- specify key bindings for less
|
||||
.SH SYNOPSIS
|
||||
|
@ -118,13 +118,16 @@ cvt_length(len, ops)
|
||||
int len;
|
||||
int ops;
|
||||
{
|
||||
if (utf_mode && (ops & CVT_TO_LC))
|
||||
if (utf_mode)
|
||||
/*
|
||||
* Converting case can cause a UTF-8 string to increase in length.
|
||||
* Multiplying by 3 is the worst case.
|
||||
* Just copying a string in UTF-8 mode can cause it to grow
|
||||
* in length.
|
||||
* Six output bytes for one input byte is the worst case
|
||||
* (and unfortunately is far more than is needed in any
|
||||
* non-pathological situation, so this is very wasteful).
|
||||
*/
|
||||
len *= 3;
|
||||
return len+1;
|
||||
len *= 6;
|
||||
return len + 1;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -701,6 +701,7 @@ v412 11/6/07 Use symbolic SEEK constants.
|
||||
v413 11/6/07 Fix search highlight bug with non-ASCII text.
|
||||
v414 11/6/07 Fix display bug with no-wrap terminals.
|
||||
v415 11/14/07 Add --follow-name option.
|
||||
v416 11/22/07 Fix crash when searching text with invalid UTF-8 sequences.
|
||||
*/
|
||||
|
||||
char version[] = "415";
|
||||
char version[] = "416";
|
||||
|
Loading…
Reference in New Issue
Block a user