aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index b40cb9f50b6..84ce140c5ba 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1250,7 +1250,7 @@ compute_motion (EMACS_INT from, EMACS_INT fromvpos, EMACS_INT fromhpos, int did_
1250 unsigned char *ovstr; 1250 unsigned char *ovstr;
1251 EMACS_INT ovlen = overlay_strings (pos, win, &ovstr); 1251 EMACS_INT ovlen = overlay_strings (pos, win, &ovstr);
1252 hpos += ((multibyte && ovlen > 0) 1252 hpos += ((multibyte && ovlen > 0)
1253 ? strwidth (ovstr, ovlen) : ovlen); 1253 ? strwidth ((char *) ovstr, ovlen) : ovlen);
1254 } 1254 }
1255 did_motion = 0; 1255 did_motion = 0;
1256 1256