comparison src/device-tty.c @ 5126:2a462149bd6a ben-lisp-object

merge
author Ben Wing <ben@xemacs.org>
date Wed, 24 Feb 2010 19:04:27 -0600
parents b5df3737028a d0c14ea98592
children a9c41067dd88
comparison
equal deleted inserted replaced
5125:b5df3737028a 5126:2a462149bd6a
1 /* TTY device functions. 1 /* TTY device functions.
2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois. 2 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois.
3 Copyright (C) 1994, 1995 Free Software Foundation, Inc. 3 Copyright (C) 1994, 1995 Free Software Foundation, Inc.
4 Copyright (C) 1996 Ben Wing. 4 Copyright (C) 1996, 2010 Ben Wing.
5 5
6 This file is part of XEmacs. 6 This file is part of XEmacs.
7 7
8 XEmacs is free software; you can redistribute it and/or modify it 8 XEmacs is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the 9 under the terms of the GNU General Public License as published by the
173 { 173 {
174 struct frame *f = XFRAME (XCAR (tail)); 174 struct frame *f = XFRAME (XCAR (tail));
175 175
176 /* We know the frame is tty because we made sure that the 176 /* We know the frame is tty because we made sure that the
177 device is tty. */ 177 device is tty. */
178 change_frame_size (f, height, width, 1); 178 change_frame_size (f, width, height, 1);
179 } 179 }
180 } 180 }
181 } 181 }
182 } 182 }
183 183