emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 d210d761b19: ; Fix doc strings of overlay-arrow variables


From: Eli Zaretskii
Subject: emacs-29 d210d761b19: ; Fix doc strings of overlay-arrow variables
Date: Sun, 1 Oct 2023 01:08:52 -0400 (EDT)

branch: emacs-29
commit d210d761b19260c9ee7adf58f01ab1805c9d930a
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    ; Fix doc strings of overlay-arrow variables
    
    * src/xdisp.c (syms_of_xdisp) <overlay-arrow-string>
    <overlay-arrow-variable-list>: Doc fixes.  (Bug#66282)
---
 src/xdisp.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/xdisp.c b/src/xdisp.c
index b39b13215f3..eb38ebba17b 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -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"));
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]