changeset 83351:e012279bbb3b

Apply patch from CVS trunk to fix recenter on ttys. * src/window.c (window_internal_height): Remove bogus make_number call. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-391
author Karoly Lorentey <lorentey@elte.hu>
date Thu, 04 Aug 2005 00:50:01 +0000
parents e7d5238afe52
children b258b3492423
files src/window.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Thu Aug 04 00:46:55 2005 +0000
+++ b/src/window.c	Thu Aug 04 00:50:01 2005 +0000
@@ -5468,7 +5468,7 @@
       int ht = window_internal_height (w);
 
       if (center_p)
-	iarg = make_number (ht / 2);
+	iarg = ht / 2;
       else if (iarg < 0)
 	iarg += ht;