From: Karl Heuer Date: Tue, 29 Mar 1994 07:20:26 +0000 (+0000) Subject: (Fwindow_width): Delete unnecessary variable declarations. X-Git-Tag: emacs-19.34~9276 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ee61d94e70aeb81ae7ed5f36bd764c16ec31ad98;p=emacs.git (Fwindow_width): Delete unnecessary variable declarations. --- diff --git a/src/window.c b/src/window.c index 12cdca006cd..b253f7d612c 100644 --- a/src/window.c +++ b/src/window.c @@ -264,10 +264,7 @@ use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).") (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,