]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/xdisp.c (get_overlay_arrow_glyph_row): Better var name.
authorEli Zaretskii <eliz@gnu.org>
Thu, 21 Apr 2022 20:25:49 +0000 (23:25 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 21 Apr 2022 20:25:49 +0000 (23:25 +0300)
src/xdisp.c

index 71de3592227ccf045da6f52a3829f095756201e9..42c3e81e5c3a8014b5903dbf407d5613dce26f5a 100644 (file)
@@ -21653,7 +21653,7 @@ get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
   struct buffer *buffer = XBUFFER (w->contents);
   struct buffer *old = current_buffer;
   const unsigned char *arrow_string = SDATA (overlay_arrow_string);
-  ptrdiff_t arrow_len = SCHARS (overlay_arrow_string), nchars = 0;
+  ptrdiff_t arrow_len = SCHARS (overlay_arrow_string), char_num = 0;
   const unsigned char *arrow_end = arrow_string + arrow_len;
   const unsigned char *p;
   struct it it;
@@ -21684,7 +21684,7 @@ get_overlay_arrow_glyph_row (struct window *w, Lisp_Object overlay_arrow_string)
       p += it.len;
 
       /* Get its face.  */
-      ilisp = make_fixnum (nchars++);
+      ilisp = make_fixnum (char_num++);
       face = Fget_text_property (ilisp, Qface, overlay_arrow_string);
       it.face_id = compute_char_face (f, it.char_to_display, face);