]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_window_margins): Make window the first argument.
authorGerd Moellmann <gerd@gnu.org>
Tue, 7 Sep 1999 14:48:56 +0000 (14:48 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 7 Sep 1999 14:48:56 +0000 (14:48 +0000)
(set_window_buffer): Call Fset_window_margins with window as first
argument.

src/window.c

index 6f1a325d67c658d49538de92e6950d47b3f084e3..d8bb7cdd699d1ed4c897d2211b70563d219990c0 100644 (file)
@@ -2382,8 +2382,7 @@ set_window_buffer (window, buffer, run_hooks_p)
     }
 
   /* Set left and right marginal area width from buffer.  */
-  Fset_window_margins (b->left_margin_width, b->right_margin_width,
-                      window);
+  Fset_window_margins (window, b->left_margin_width, b->right_margin_width);
 
   if (run_hooks_p)
     {
@@ -4582,16 +4581,16 @@ First parameter LEFT-WIDTH specifies the number of character\n\
 cells to reserve for the left marginal area.  Second parameter\n\
 RIGHT-WIDTH does the same for the right marginal area.\n\
 A nil width parameter means no margin.")
-  (left, right, window)
+  (window, left, right)
      Lisp_Object window, left, right;
 {
   struct window *w = decode_window (window);
   struct frame *f = XFRAME (w->frame);
 
   if (!NILP (left))
-    CHECK_NUMBER_OR_FLOAT (left, 0);
+    CHECK_NUMBER_OR_FLOAT (left, 1);
   if (!NILP (right))
-    CHECK_NUMBER_OR_FLOAT (right, 0);
+    CHECK_NUMBER_OR_FLOAT (right, 2);
 
   /* Check widths < 0 and translate a zero width to nil.
      Margins that are too wide have to be checked elsewhere.  */