aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaroly Lorentey2005-08-04 00:50:01 +0000
committerKaroly Lorentey2005-08-04 00:50:01 +0000
commit507633649fabb59ef1db6dd0d401429d977958eb (patch)
tree1201ee87c7856c70009efe017bd5e2e61fa527fe
parentd51abf2262fe5195c781647c6a1cc57d1a7e6509 (diff)
downloademacs-507633649fabb59ef1db6dd0d401429d977958eb.tar.gz
emacs-507633649fabb59ef1db6dd0d401429d977958eb.zip
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
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index a55043ad673..c0cf06d5e46 100644
--- a/src/window.c
+++ b/src/window.c
@@ -5468,7 +5468,7 @@ and redisplay normally--don't erase and redraw the frame. */)
5468 int ht = window_internal_height (w); 5468 int ht = window_internal_height (w);
5469 5469
5470 if (center_p) 5470 if (center_p)
5471 iarg = make_number (ht / 2); 5471 iarg = ht / 2;
5472 else if (iarg < 0) 5472 else if (iarg < 0)
5473 iarg += ht; 5473 iarg += ht;
5474 5474