Mercurial > emacs
diff src/window.c @ 6576:851ee89bae86
(Fwindow_width): Delete unnecessary variable declarations.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Tue, 29 Mar 1994 07:20:26 +0000 |
| parents | 8f5f79c3091a |
| children | 43a79400a664 |
line wrap: on
line diff
--- a/src/window.c Tue Mar 29 07:08:23 1994 +0000 +++ b/src/window.c Tue Mar 29 07:20:26 1994 +0000 @@ -264,10 +264,7 @@ (window) Lisp_Object window; { - register struct window *w = decode_window (window); - register int width = XFASTINT (w->width); - - return make_number (window_internal_width (w)); + return make_number (window_internal_width (decode_window (window))); } DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
