]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_change_window_property): Rename SOURCE arg to WINDOW-ID
authorNoah Friedman <friedman@splode.com>
Fri, 9 Aug 2019 04:52:37 +0000 (21:52 -0700)
committerNoah Friedman <friedman@splode.com>
Fri, 9 Aug 2019 04:52:37 +0000 (21:52 -0700)
src/xfns.c

index 5f5194d78f4b7210c2260c65e4fa06ef0e75943f..bc3490d59bf29d022c7574f32bf925f50df0f6d2 100644 (file)
@@ -5736,11 +5736,11 @@ It must be one of 8, 16 or 32.
 If VALUE is a string or FORMAT is nil or not given, FORMAT defaults to 8.
 If OUTER-P is non-nil, the property is changed for the outer X window of
 FRAME.  Default is to change on the edit X window.
-If SOURCE is non-nil, set the property on that window instead of from
-FRAME.  The number 0 denotes the root window.  */)
+If WINDOW-ID is non-nil, set the property on that window instead of FRAME.
+The number 0 denotes the root window.  */)
   (Lisp_Object prop, Lisp_Object value, Lisp_Object frame,
    Lisp_Object type, Lisp_Object format, Lisp_Object outer_p,
-   Lisp_Object source)
+   Lisp_Object window_id)
 {
   struct frame *f = decode_window_system_frame (frame);
   Atom prop_atom;
@@ -5804,9 +5804,9 @@ FRAME.  The number 0 denotes the root window.  */)
       target_type = XInternAtom (FRAME_X_DISPLAY (f), SSDATA (type), False);
     }
 
-  if (! NILP (source))
+  if (! NILP (window_id))
     {
-      CONS_TO_INTEGER (source, Window, w);
+      CONS_TO_INTEGER (window_id, Window, w);
       if (! w)
        w = FRAME_DISPLAY_INFO (f)->root_window;
     }