diff options
| author | Eli Zaretskii | 2019-08-09 10:02:23 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-08-09 10:02:23 +0300 |
| commit | bf10b8c3e8d8c45be47bb3c529017d3cb5562178 (patch) | |
| tree | 6a8912caaec953ea82ac97a4ae9ae2b126763a44 /src | |
| parent | d6713add69c7a696627e68e2b84c4aa7aaf05000 (diff) | |
| download | emacs-bf10b8c3e8d8c45be47bb3c529017d3cb5562178.tar.gz emacs-bf10b8c3e8d8c45be47bb3c529017d3cb5562178.zip | |
Fix doc strings modified in recent changes
* src/xfns.c (Fx_change_window_property)
(Fx_delete_window_property, Fx_window_property)
(Fx_window_property_attributes): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/xfns.c b/src/xfns.c index dfb48dd3a4d..31ae4cc225b 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -5737,8 +5737,8 @@ FORMAT gives the size in bits of each element if VALUE is a list. | |||
| 5737 | If OUTER-P is non-nil, the property is changed for the outer X window of | 5737 | If OUTER-P is non-nil, the property is changed for the outer X window of |
| 5738 | FRAME. Default is to change on the edit X window. | 5738 | FRAME. Default is to change on the edit X window. |
| 5739 | If WINDOW-ID is non-nil, change the property of that window instead | 5739 | If WINDOW-ID is non-nil, change the property of that window instead |
| 5740 | of FRAME; the number 0 denotes the root window. This argument is | 5740 | of FRAME's X window; the number 0 denotes the root window. This argument |
| 5741 | separate from FRAME because window IDs are not unique across X | 5741 | is separate from FRAME because window IDs are not unique across X |
| 5742 | displays or screens on the same display, so FRAME provides context | 5742 | displays or screens on the same display, so FRAME provides context |
| 5743 | for the window ID. */) | 5743 | for the window ID. */) |
| 5744 | (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, | 5744 | (Lisp_Object prop, Lisp_Object value, Lisp_Object frame, |
| @@ -5840,12 +5840,12 @@ DEFUN ("x-delete-window-property", Fx_delete_window_property, | |||
| 5840 | doc: /* Remove window property PROP from X window of FRAME. | 5840 | doc: /* Remove window property PROP from X window of FRAME. |
| 5841 | FRAME nil or omitted means use the selected frame. | 5841 | FRAME nil or omitted means use the selected frame. |
| 5842 | If WINDOW-ID is non-nil, remove property from that window instead | 5842 | If WINDOW-ID is non-nil, remove property from that window instead |
| 5843 | of FRAME; the number 0 denotes the root window. This argument is | 5843 | of FRAME's X window; the number 0 denotes the root window. This |
| 5844 | separate from FRAME because window IDs are not unique across X | 5844 | argument is separate from FRAME because window IDs are not unique |
| 5845 | displays or screens on the same display, so FRAME provides context | 5845 | across X displays or screens on the same display, so FRAME provides |
| 5846 | for the window ID. | 5846 | context for the window ID. |
| 5847 | 5847 | ||
| 5848 | Return value is PROP. */) | 5848 | Value is PROP. */) |
| 5849 | (Lisp_Object prop, Lisp_Object frame, Lisp_Object window_id) | 5849 | (Lisp_Object prop, Lisp_Object frame, Lisp_Object window_id) |
| 5850 | { | 5850 | { |
| 5851 | struct frame *f = decode_window_system_frame (frame); | 5851 | struct frame *f = decode_window_system_frame (frame); |
| @@ -5957,17 +5957,17 @@ If FRAME is nil or omitted, use the selected frame. | |||
| 5957 | 5957 | ||
| 5958 | On X Windows, the following optional arguments are also accepted: | 5958 | On X Windows, the following optional arguments are also accepted: |
| 5959 | If TYPE is nil or omitted, get the property as a string. | 5959 | If TYPE is nil or omitted, get the property as a string. |
| 5960 | Otherwise TYPE is the name of the atom that denotes the type expected. | 5960 | Otherwise TYPE is the name of the atom that denotes the expected type. |
| 5961 | If WINDOW-ID is non-nil, get the property of that window instead of | 5961 | If WINDOW-ID is non-nil, get the property of that window instead of |
| 5962 | FRAME; the number 0 denotes the root window. This argument is | 5962 | FRAME's X window; the number 0 denotes the root window. This argument |
| 5963 | separate from FRAME because window IDs are not unique across X | 5963 | is separate from FRAME because window IDs are not unique across X |
| 5964 | displays or screens on the same display, so FRAME provides context | 5964 | displays or screens on the same display, so FRAME provides context |
| 5965 | for the window ID. | 5965 | for the window ID. |
| 5966 | If DELETE-P is non-nil, delete the property after retrieving it. | 5966 | If DELETE-P is non-nil, delete the property after retrieving it. |
| 5967 | If VECTOR-RET-P is non-nil, don't return a string but a vector of values. | 5967 | If VECTOR-RET-P is non-nil, return a vector of values instead of a string. |
| 5968 | 5968 | ||
| 5969 | Return value is nil if FRAME doesn't have a property with name PROP or | 5969 | Return value is nil if FRAME doesn't have a property with name PROP or |
| 5970 | if PROP has no value of TYPE (always string in the MS Windows case). */) | 5970 | if PROP has no value of TYPE (always a string in the MS Windows case). */) |
| 5971 | (Lisp_Object prop, Lisp_Object frame, Lisp_Object type, | 5971 | (Lisp_Object prop, Lisp_Object frame, Lisp_Object type, |
| 5972 | Lisp_Object window_id, Lisp_Object delete_p, Lisp_Object vector_ret_p) | 5972 | Lisp_Object window_id, Lisp_Object delete_p, Lisp_Object vector_ret_p) |
| 5973 | { | 5973 | { |
| @@ -6028,12 +6028,12 @@ DEFUN ("x-window-property-attributes", Fx_window_property_attributes, Sx_window_ | |||
| 6028 | doc: /* Retrieve metadata about window property PROP on FRAME. | 6028 | doc: /* Retrieve metadata about window property PROP on FRAME. |
| 6029 | If FRAME is nil or omitted, use the selected frame. | 6029 | If FRAME is nil or omitted, use the selected frame. |
| 6030 | If WINDOW-ID is non-nil, get the property of that window instead of | 6030 | If WINDOW-ID is non-nil, get the property of that window instead of |
| 6031 | FRAME; the number 0 denotes the root window. This argument is | 6031 | FRAME's X window; the number 0 denotes the root window. This |
| 6032 | separate from FRAME because window IDs are not unique across X | 6032 | argument is separate from FRAME because window IDs are not unique |
| 6033 | displays or screens on the same display, so FRAME provides context | 6033 | across X displays or screens on the same display, so FRAME provides |
| 6034 | for the window ID. | 6034 | context for the window ID. |
| 6035 | 6035 | ||
| 6036 | Return value is nil if FRAME doesn't have a property with name PROP. | 6036 | Return value is nil if FRAME doesn't have a property named PROP. |
| 6037 | Otherwise, the return value is a vector with the following fields: | 6037 | Otherwise, the return value is a vector with the following fields: |
| 6038 | 6038 | ||
| 6039 | 0. The property type, as an integer. The symbolic name of | 6039 | 0. The property type, as an integer. The symbolic name of |