]> git.eshelyaron.com Git - emacs.git/commitdiff
window-height, window-width, and window-full-width-p are now in window.el.
authorMartin Rudalics <rudalics@gmx.at>
Wed, 8 Jun 2011 05:40:45 +0000 (07:40 +0200)
committerMartin Rudalics <rudalics@gmx.at>
Wed, 8 Jun 2011 05:40:45 +0000 (07:40 +0200)
* window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
Remove.
* window.el (window-height): Defalias to window-total-height.
(window-width): Defalias to window-body-width.

lisp/ChangeLog
lisp/window.el
src/ChangeLog
src/window.c

index e5911a35db2eb39b3036b1a39aeff24c3946e2cd..5838d198d9b919481bba19aab70ab90fccd7d96e 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-08  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (window-height): Defalias to window-total-height.
+       (window-width): Defalias to window-body-width.
+
 2011-06-07  Chong Yidong  <cyd@stupidchicken.com>
 
        * image-mode.el (image-toggle-animation): New command.
index 856ec66a0056f2ee9347c7b8734eb8a4cd4639a2..98c49faaf2864a516c49c86ec210bdd97e0f3fd3 100644 (file)
@@ -900,6 +900,9 @@ Note: This function does not take into account the value of
 `line-spacing' when calculating the number of lines in WINDOW."
   (window-total-size window))
 
+;; Eventually we should make `window-height' obsolete.
+(defalias 'window-height 'window-total-height)
+
 ;; See discussion in bug#4543.
 (defsubst window-full-height-p (&optional window)
   "Return t if WINDOW is as high as the containing frame.
@@ -951,6 +954,9 @@ not include the number of columns used for WINDOW's fringes or
 display margins either."
   (window-body-size window t))
 
+;; Eventually we should make `window-height' obsolete.
+(defalias 'window-width 'window-body-width)
+
 (defun one-window-p (&optional nomini all-frames)
   "Return non-nil if the selected window is the only window.
 Optional arg NOMINI non-nil means don't count the minibuffer
index 435b5ea7468073c533a02e54142ce99406da9353..206f1362b8e6e48c952a3ee32f01303c2cda3866 100644 (file)
@@ -1,3 +1,8 @@
+2011-06-08  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
+       Remove.
+
 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
 
        * window.c (Fwindow_total_size, Fwindow_left_column)
index 5b95db634a027a15468f9ecfe664311e07eb8c3d..786619df7556ea59d91470d76787df849a237416 100644 (file)
@@ -800,39 +800,6 @@ WINDOW's fringes or display margins either.  */)
     return make_number (window_body_cols (w));
 }
 
-DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
-       doc: /* Return the number of lines in WINDOW.
-WINDOW defaults to the selected window.
-
-The return value includes WINDOW's mode line and header line, if any.
-
-Note: The function does not take into account the value of `line-spacing'
-when calculating the number of lines in WINDOW.  */)
-  (Lisp_Object window)
-{
-  return decode_any_window (window)->total_lines;
-}
-
-DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
-       doc: /* Return the number of display columns in WINDOW.
-WINDOW defaults to the selected window.
-
-Note: The return value is the number of columns available for text in
-WINDOW.  If you want to find out how many columns WINDOW takes up, use
-(let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).  */)
-  (Lisp_Object window)
-{
-  return make_number (window_body_cols (decode_any_window (window)));
-}
-
-DEFUN ("window-full-width-p", Fwindow_full_width_p, Swindow_full_width_p, 0, 1, 0,
-       doc: /* Return t if WINDOW is as wide as its frame.
-WINDOW defaults to the selected window.  */)
-  (Lisp_Object window)
-{
-  return WINDOW_FULL_WIDTH_P (decode_any_window (window)) ? Qt : Qnil;
-}
-
 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
        doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
 WINDOW defaults to the selected window.  */)
@@ -7325,9 +7292,6 @@ frame to be redrawn only if it is a tty frame.  */);
   defsubr (&Swindow_left_column);
   defsubr (&Swindow_total_size);
   defsubr (&Swindow_body_size);
-  defsubr (&Swindow_height);
-  defsubr (&Swindow_width);
-  defsubr (&Swindow_full_width_p);
   defsubr (&Swindow_hscroll);
   defsubr (&Sset_window_hscroll);
   defsubr (&Swindow_redisplay_end_trigger);