; Fix doc strings of overlay-arrow variables

* src/xdisp.c (syms_of_xdisp) <overlay-arrow-string>
<overlay-arrow-variable-list>: Doc fixes.  (Bug#66282)
This commit is contained in:
Eli Zaretskii 2023-10-01 08:08:03 +03:00
parent 4fd00ff1f7
commit d210d761b1

View file

@ -36674,14 +36674,15 @@ See also `overlay-arrow-string'. */);
Voverlay_arrow_position = Qnil; Voverlay_arrow_position = Qnil;
DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string, DEFVAR_LISP ("overlay-arrow-string", Voverlay_arrow_string,
doc: /* String to display as an arrow in non-window frames. doc: /* String to display as an arrow in text-mode frames.
See also `overlay-arrow-position'. */); See also `overlay-arrow-position'. */);
Voverlay_arrow_string = build_pure_c_string ("=>"); Voverlay_arrow_string = build_pure_c_string ("=>");
DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list, DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
doc: /* List of variables (symbols) which hold markers for overlay arrows. doc: /* List of variables (symbols) which hold markers for overlay arrows.
The symbols on this list are examined during redisplay to determine The symbols on this list are examined during redisplay to determine
where to display overlay arrows. */); where to display overlay arrows.
See also `overlay-arrow-string'. */);
Voverlay_arrow_variable_list Voverlay_arrow_variable_list
= list1 (intern_c_string ("overlay-arrow-position")); = list1 (intern_c_string ("overlay-arrow-position"));