less: upgrade to v581.2.
MFC after: 1 week
This commit is contained in:
commit
50d31dbc6e
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
Major changes between "less" versions 563 and 581
|
Major changes between "less" versions 563 and 581.2
|
||||||
|
|
||||||
* Change ESC-u command to toggle, not disable, highlighting per man page.
|
* Change ESC-u command to toggle, not disable, highlighting per man page.
|
||||||
|
|
||||||
|
@ -7,9 +7,9 @@
|
|||||||
**************************************************************************
|
**************************************************************************
|
||||||
**************************************************************************
|
**************************************************************************
|
||||||
|
|
||||||
Less, version 581
|
Less, version 581.2
|
||||||
|
|
||||||
This is the distribution of less, version 581, released 06 Apr 2021.
|
This is the distribution of less, version 581.2, released 28 Apr 2021.
|
||||||
This program is part of the GNU project (http://www.gnu.org).
|
This program is part of the GNU project (http://www.gnu.org).
|
||||||
|
|
||||||
This program is free software. You may redistribute it and/or
|
This program is free software. You may redistribute it and/or
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* This file was generated by mkhelp.pl from less.hlp at 1:31 on 2021/4/7 */
|
/* This file was generated by mkhelp.pl from less.hlp at 14:59 on 2021/4/28 */
|
||||||
#include "less.h"
|
#include "less.h"
|
||||||
constant char helpdata[] = {
|
constant char helpdata[] = {
|
||||||
'\n',
|
'\n',
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
'\" t
|
'\" t
|
||||||
.TH LESS 1 "Version 581: 06 Apr 2021"
|
.TH LESS 1 "Version 581.2: 28 Apr 2021"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
less \- opposite of more
|
less \- opposite of more
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH LESSECHO 1 "Version 581: 06 Apr 2021"
|
.TH LESSECHO 1 "Version 581.2: 28 Apr 2021"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lessecho \- expand metacharacters
|
lessecho \- expand metacharacters
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
'\" t
|
'\" t
|
||||||
.TH LESSKEY 1 "Version 581: 06 Apr 2021"
|
.TH LESSKEY 1 "Version 581.2: 28 Apr 2021"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
lesskey \- specify key bindings for less
|
lesskey \- specify key bindings for less
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
@ -1673,8 +1673,6 @@ ltputs(str, affcnt, f_putc)
|
|||||||
public void
|
public void
|
||||||
init_mouse(VOID_PARAM)
|
init_mouse(VOID_PARAM)
|
||||||
{
|
{
|
||||||
if (!mousecap)
|
|
||||||
return;
|
|
||||||
#if !MSDOS_COMPILER
|
#if !MSDOS_COMPILER
|
||||||
ltputs(sc_s_mousecap, sc_height, putchr);
|
ltputs(sc_s_mousecap, sc_height, putchr);
|
||||||
#else
|
#else
|
||||||
@ -1693,8 +1691,6 @@ init_mouse(VOID_PARAM)
|
|||||||
public void
|
public void
|
||||||
deinit_mouse(VOID_PARAM)
|
deinit_mouse(VOID_PARAM)
|
||||||
{
|
{
|
||||||
if (!mousecap)
|
|
||||||
return;
|
|
||||||
#if !MSDOS_COMPILER
|
#if !MSDOS_COMPILER
|
||||||
ltputs(sc_e_mousecap, sc_height, putchr);
|
ltputs(sc_e_mousecap, sc_height, putchr);
|
||||||
#else
|
#else
|
||||||
@ -1718,7 +1714,8 @@ init(VOID_PARAM)
|
|||||||
ltputs(sc_init, sc_height, putchr);
|
ltputs(sc_init, sc_height, putchr);
|
||||||
if (!no_keypad)
|
if (!no_keypad)
|
||||||
ltputs(sc_s_keypad, sc_height, putchr);
|
ltputs(sc_s_keypad, sc_height, putchr);
|
||||||
init_mouse();
|
if (mousecap)
|
||||||
|
init_mouse();
|
||||||
}
|
}
|
||||||
init_done = 1;
|
init_done = 1;
|
||||||
if (top_scroll)
|
if (top_scroll)
|
||||||
@ -1741,7 +1738,8 @@ init(VOID_PARAM)
|
|||||||
{
|
{
|
||||||
if (!no_init)
|
if (!no_init)
|
||||||
win32_init_term();
|
win32_init_term();
|
||||||
init_mouse();
|
if (mousecap)
|
||||||
|
init_mouse();
|
||||||
|
|
||||||
}
|
}
|
||||||
win32_init_vt_term();
|
win32_init_vt_term();
|
||||||
@ -1763,7 +1761,8 @@ deinit(VOID_PARAM)
|
|||||||
#if !MSDOS_COMPILER
|
#if !MSDOS_COMPILER
|
||||||
if (!(quit_if_one_screen && one_screen))
|
if (!(quit_if_one_screen && one_screen))
|
||||||
{
|
{
|
||||||
deinit_mouse();
|
if (mousecap)
|
||||||
|
deinit_mouse();
|
||||||
if (!no_keypad)
|
if (!no_keypad)
|
||||||
ltputs(sc_e_keypad, sc_height, putchr);
|
ltputs(sc_e_keypad, sc_height, putchr);
|
||||||
if (!no_init)
|
if (!no_init)
|
||||||
@ -1776,7 +1775,8 @@ deinit(VOID_PARAM)
|
|||||||
win32_deinit_vt_term();
|
win32_deinit_vt_term();
|
||||||
if (!(quit_if_one_screen && one_screen))
|
if (!(quit_if_one_screen && one_screen))
|
||||||
{
|
{
|
||||||
deinit_mouse();
|
if (mousecap)
|
||||||
|
deinit_mouse();
|
||||||
if (!no_init)
|
if (!no_init)
|
||||||
win32_deinit_term();
|
win32_deinit_term();
|
||||||
}
|
}
|
||||||
|
@ -919,6 +919,7 @@ v578 2/9/21 Doc
|
|||||||
v579 2/14/21 Fix double-width char bugs and non-match search crash.
|
v579 2/14/21 Fix double-width char bugs and non-match search crash.
|
||||||
v580 3/2/21 Some color fixes; fix compiler warnings; some lesstest support.
|
v580 3/2/21 Some color fixes; fix compiler warnings; some lesstest support.
|
||||||
v581 4/6/21 Ignore SIGTSTP in secure mode; don't print "skipping" when filtering.
|
v581 4/6/21 Ignore SIGTSTP in secure mode; don't print "skipping" when filtering.
|
||||||
|
v581.2 4/28/21 Fix failure to deinit mouse.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
char version[] = "581";
|
char version[] = "581.2";
|
||||||
|
Loading…
Reference in New Issue
Block a user