aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2019-08-09 10:02:23 +0300
committerEli Zaretskii2019-08-09 10:02:23 +0300
commitbf10b8c3e8d8c45be47bb3c529017d3cb5562178 (patch)
tree6a8912caaec953ea82ac97a4ae9ae2b126763a44 /src
parentd6713add69c7a696627e68e2b84c4aa7aaf05000 (diff)
downloademacs-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.c34
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.
5737If OUTER-P is non-nil, the property is changed for the outer X window of 5737If 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.
5739If WINDOW-ID is non-nil, change the property of that window instead 5739If 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.
5841FRAME nil or omitted means use the selected frame. 5841FRAME nil or omitted means use the selected frame.
5842If WINDOW-ID is non-nil, remove property from that window instead 5842If 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
5848Return value is PROP. */) 5848Value 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
5958On X Windows, the following optional arguments are also accepted: 5958On X Windows, the following optional arguments are also accepted:
5959If TYPE is nil or omitted, get the property as a string. 5959If 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.
5961If WINDOW-ID is non-nil, get the property of that window instead of 5961If 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.
5966If DELETE-P is non-nil, delete the property after retrieving it. 5966If DELETE-P is non-nil, delete the property after retrieving it.
5967If VECTOR-RET-P is non-nil, don't return a string but a vector of values. 5967If VECTOR-RET-P is non-nil, return a vector of values instead of a string.
5968 5968
5969Return value is nil if FRAME doesn't have a property with name PROP or 5969Return value is nil if FRAME doesn't have a property with name PROP or
5970if PROP has no value of TYPE (always string in the MS Windows case). */) 5970if 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.
6029If FRAME is nil or omitted, use the selected frame. 6029If FRAME is nil or omitted, use the selected frame.
6030If WINDOW-ID is non-nil, get the property of that window instead of 6030If 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
6036Return value is nil if FRAME doesn't have a property with name PROP. 6036Return value is nil if FRAME doesn't have a property named PROP.
6037Otherwise, the return value is a vector with the following fields: 6037Otherwise, the return value is a vector with the following fields:
6038 6038
60390. The property type, as an integer. The symbolic name of 60390. The property type, as an integer. The symbolic name of