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;
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;
}