aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2018-07-01 19:19:51 +0300
committerEli Zaretskii2018-07-01 19:19:51 +0300
commitfd5bf49139ab84f630b60c6714e0db2da34edff2 (patch)
tree5e6d69901c0e964498787a549c438331caedc1e2 /src
parent260768a64be39aada03247d6057698df97bcb800 (diff)
downloademacs-fd5bf49139ab84f630b60c6714e0db2da34edff2.tar.gz
emacs-fd5bf49139ab84f630b60c6714e0db2da34edff2.zip
Fix last change
* src/w32console.c (Fset_screen_color): Call Frecenter with 2 arguments. (Bug#31325) * etc/NEWS: * doc/lispref/windows.texi (Textual Scrolling): Clarify the role of the second argument to 'recenter'.
Diffstat (limited to 'src')
-rw-r--r--src/w32console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32console.c b/src/w32console.c
index ea30853bade..330aef57584 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -793,7 +793,7 @@ Arguments should be indices between 0 and 15, see w32console.el. */)
793{ 793{
794 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4); 794 char_attr_normal = XFASTINT (foreground) + (XFASTINT (background) << 4);
795 795
796 Frecenter (Qnil); 796 Frecenter (Qnil, Qt);
797 return Qt; 797 return Qt;
798} 798}
799 799