Skip to content

Commit

Permalink
Update NEWS.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwsw committed May 6, 2020
1 parent 17254b3 commit c99bb26
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions NEWS.VER
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
* Display error message immediately when -o is toggled and
input is not a pipe.

* Fix regression: make screen repaint when "squished" and
a no-movement command is given.

* Make WIN32C version include this fix from 551:
Don't count lines in initial screen if using -X with -F.

* Fix display bug in WIN32C version.

* Fix memory corruption when built with libtermcap.
Expand Down
2 changes: 1 addition & 1 deletion filename.c
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ lrealpath(path)
{
#if HAVE_REALPATH
char *rpath = realpath(path, NULL);
if (rpath != NULL)
if (rpath != NULL)
return (rpath);
#endif
return (save(path));
Expand Down
3 changes: 2 additions & 1 deletion version.c
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,7 @@ v558 4/17/20 Don't init terminal if -F and file fits on one screen (WIN32).
v559 4/19/20 Handle deinit correctly on WIN32.
v560 5/3/20 Fix regression when command results in no movement;
fix some less.nro issues (thanks to Bjarni I. Gislason).
v561x
*/

char version[] = "560";
char version[] = "561x";

0 comments on commit c99bb26

Please sign in to comment.