Merge remote-tracking branch 'origin/master' into feature/android

This commit is contained in:
Po Lu 2023-07-19 07:54:08 +08:00
commit a177e8fd18
2 changed files with 8 additions and 1 deletions

View file

@ -234,7 +234,7 @@ Eshell manual.
+++
*** Eshell commands can now be explicitly-remote (or local).
By prefixing a command name in Eshell with a remote identifier, like
"/ssh:user@remote:whoami", you can now runs commands on a particular
"/ssh:user@remote:whoami", you can now run commands on a particular
host no matter your current directory. Likewise, you can run a
command on your local system no matter your current directory via
"/:whoami". For more information, see the "(eshell) Remote Access"

View file

@ -11651,6 +11651,8 @@ WINDOW. */)
set_buffer_internal_1 (b);
ptrdiff_t base_line_pos = w->base_line_pos;
int end_valid = w->window_end_valid;
if (!EQ (buffer, w->contents))
{
wset_buffer (w, buffer);
@ -11663,6 +11665,11 @@ WINDOW. */)
unbind_to (count, Qnil);
/* Restore original values. This is important if this function is
called from some ':eval' form in the middle of redisplay. */
w->base_line_pos = base_line_pos;
w->window_end_valid = end_valid;
return value;
}