; 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:
parent
4fd00ff1f7
commit
d210d761b1
1 changed files with 3 additions and 2 deletions
|
@ -36674,14 +36674,15 @@ See also `overlay-arrow-string'. */);
|
|||
Voverlay_arrow_position = Qnil;
|
||||
|
||||
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'. */);
|
||||
Voverlay_arrow_string = build_pure_c_string ("=>");
|
||||
|
||||
DEFVAR_LISP ("overlay-arrow-variable-list", Voverlay_arrow_variable_list,
|
||||
doc: /* List of variables (symbols) which hold markers for overlay arrows.
|
||||
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
|
||||
= list1 (intern_c_string ("overlay-arrow-position"));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue