From: Juanma Barranquero Date: Thu, 28 Apr 2011 02:01:33 +0000 (+0200) Subject: src/w32fns.c: #if-0 some functions entirely, not just the bodies. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~191 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b124fd93b090f840e30ad1fd9a9cbf1858c74342;p=emacs.git src/w32fns.c: #if-0 some functions entirely, not just the bodies. --- diff --git a/src/ChangeLog b/src/ChangeLog index 567c1251480..91777751853 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2011-04-28 Juanma Barranquero + + * w32fns.c (Fx_change_window_property, Fx_delete_window_property) + (Fx_window_property): #if-0 the whole functions, not just the bodies. + 2011-04-27 Paul Eggert * doprnt.c (doprnt): Support "ll" length modifier, for long long. diff --git a/src/w32fns.c b/src/w32fns.c index 821cc671646..bdf9dce9411 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -4865,6 +4865,8 @@ If TERMINAL is omitted or nil, that stands for the selected frame's display. */ Window properties ***********************************************************************/ +#if 0 /* TODO : port window properties to W32 */ + DEFUN ("x-change-window-property", Fx_change_window_property, Sx_change_window_property, 2, 6, 0, doc: /* Change window property PROP to VALUE on the X window of FRAME. @@ -4884,7 +4886,6 @@ 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) { -#if 0 /* TODO : port window properties to W32 */ struct frame *f = check_x_frame (frame); Atom prop_atom; @@ -4901,8 +4902,6 @@ FRAME. Default is to change on the edit X window. */) XFlush (FRAME_W32_DISPLAY (f)); UNBLOCK_INPUT; -#endif /* TODO */ - return value; } @@ -4913,8 +4912,6 @@ DEFUN ("x-delete-window-property", Fx_delete_window_property, FRAME nil or omitted means use the selected frame. Value is PROP. */) (Lisp_Object prop, Lisp_Object frame) { -#if 0 /* TODO : port window properties to W32 */ - struct frame *f = check_x_frame (frame); Atom prop_atom; @@ -4926,7 +4923,6 @@ FRAME nil or omitted means use the selected frame. Value is PROP. */) /* Make sure the property is removed when we return. */ XFlush (FRAME_W32_DISPLAY (f)); UNBLOCK_INPUT; -#endif /* TODO */ return prop; } @@ -4951,8 +4947,6 @@ Value is nil if FRAME hasn't a property with name PROP or if PROP has no value of TYPE (always string in the MS Windows case). */) (Lisp_Object prop, Lisp_Object frame) { -#if 0 /* TODO : port window properties to W32 */ - struct frame *f = check_x_frame (frame); Atom prop_atom; int rc; @@ -4992,10 +4986,10 @@ no value of TYPE (always string in the MS Windows case). */) return prop_value; -#endif /* TODO */ return Qnil; } +#endif /* TODO */ /***********************************************************************