From: Andreas Schwab Date: Fri, 6 Jul 2012 20:00:42 +0000 (+0200) Subject: * xfns.c (Fx_change_window_property): Doc fix. X-Git-Tag: emacs-24.2.90~1199^2~167 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fca8d6b6871079195376ff9db564f659215d7295;p=emacs.git * xfns.c (Fx_change_window_property): Doc fix. * w32fns.c (Fx_change_window_property): Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 0f1a0bdc666..cfabe846422 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2012-07-06 Andreas Schwab + * xfns.c (Fx_change_window_property): Doc fix. + * w32fns.c (Fx_change_window_property): Doc fix. + * w32fns.c (Fx_window_property): Accept the same arguments as the X Windows version. Doc fix. * xfns.c (Fx_window_property): Doc fix. (Bug#11870) diff --git a/src/w32fns.c b/src/w32fns.c index babc1e76cfc..53d344d11e8 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -4897,9 +4897,10 @@ If TYPE is not given or nil, the type is STRING. FORMAT gives the size in bits of each element if VALUE is a list. 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 +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. */) - (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, Lisp_Object type, Lisp_Object format, Lisp_Object outer_p) + (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, + Lisp_Object type, Lisp_Object format, Lisp_Object outer_p) { struct frame *f = check_x_frame (frame); Atom prop_atom; diff --git a/src/xfns.c b/src/xfns.c index 01ff62fcc48..35f715d89f7 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4189,9 +4189,10 @@ If TYPE is not given or nil, the type is STRING. FORMAT gives the size in bits of each element if VALUE is a list. 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 +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. */) - (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, Lisp_Object type, Lisp_Object format, Lisp_Object outer_p) + (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, + Lisp_Object type, Lisp_Object format, Lisp_Object outer_p) { struct frame *f = check_x_frame (frame); Atom prop_atom;