]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_window_parameter): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 4 Jun 2008 21:24:29 +0000 (21:24 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 4 Jun 2008 21:24:29 +0000 (21:24 +0000)
(Fwindow_parameters, Fwindow_parameter): Remove redundant check.

src/ChangeLog
src/window.c

index c4efbf31bb10135cdc8452bfc32d4f5c8b17a834..97c9f355fe384a94474aca3383d50f28acb6f6de 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * window.c (Fset_window_parameter): Doc fix.
+       (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
+
 2008-06-04  Joakim Verona  <joakim@verona.se>
 
        * window.h (struct window): Add new member window_parameters.
index 8ab518d178fe145d43d9cc731ac02132ffe56a71..d31e6c653f14712bb4d6f062fe54f7562ceb335e 100644 (file)
@@ -795,7 +795,7 @@ coordinates_in_window (w, x, y)
     header_vertical_border_check:
       /* We're somewhere on the mode line.  We consider the place
         between mode lines of horizontally adjacent mode lines
-        as the vertical border.    If scroll bars on the left,
+        as the vertical border.  If scroll bars on the left,
         return the right window.  */
       if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
          || WINDOW_RIGHTMOST_P (w))
@@ -1334,8 +1334,6 @@ If WINDOW is omitted, return information on the currently selected window.  */)
      (window)
      Lisp_Object window;
 {
-  if (NILP (window))
-    window = selected_window;
   return decode_window (window)->window_parameters;
 }
 
@@ -1346,8 +1344,6 @@ If WINDOW is nil, describe the currently selected window.  */)
      (window, parameter)
      Lisp_Object window, parameter;
 {
-  if (NILP (window))
-    window = selected_window;
   return Fassq (parameter, decode_window (window)->window_parameters);
 }
 
@@ -1355,6 +1351,7 @@ If WINDOW is nil, describe the currently selected window.  */)
 DEFUN ("set-window-parameter", Fset_window_parameter,
        Sset_window_parameter, 3, 3, 0,
        doc: /* Set window parameter PARAMETER to VALUE on WINDOW.
+If WINDOW is nil, use the currently selected window.
 Return the parameters-alist of WINDOW.  */)
      (window, parameter, value)
      Lisp_Object window, parameter, value;
@@ -5107,7 +5104,7 @@ window_scroll_pixel_based (window, n, whole, noerror)
   struct window *w = XWINDOW (window);
   struct text_pos start;
   int this_scroll_margin;
-  /* True if we fiddled the window vscroll field without really scrolling.   */
+  /* True if we fiddled the window vscroll field without really scrolling.  */
   int vscrolled = 0;
   int x, y, rtop, rbot, rowh, vpos;
 
@@ -6344,7 +6341,7 @@ the return value is nil.  Otherwise the value is t.  */)
       /* Problem: Freeing all matrices and later allocating them again
         is a serious redisplay flickering problem.  What we would
         really like to do is to free only those matrices not reused
-        below.   */
+        below.  */
       root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
       leaf_windows
        = (struct window **) alloca (count_windows (root_window)
@@ -7257,7 +7254,7 @@ freeze_window_starts (f, freeze_p)
  ***********************************************************************/
 
 /* Return 1 if window configurations C1 and C2
-   describe the same state of affairs.  This is used by Fequal.   */
+   describe the same state of affairs.  This is used by Fequal.  */
 
 int
 compare_window_configurations (c1, c2, ignore_positions)