aboutsummaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorPaul Eggert2011-02-06 21:42:15 -0800
committerPaul Eggert2011-02-06 21:42:15 -0800
commit7469ef5d1bf4a7d2297fce554dc0980d4787ffb4 (patch)
tree179dafe5e7dda10542f948c83f55b578621232ca /src/indent.c
parent0ca76b1eacbc5df387325d8711d3add68486909a (diff)
downloademacs-7469ef5d1bf4a7d2297fce554dc0980d4787ffb4.tar.gz
emacs-7469ef5d1bf4a7d2297fce554dc0980d4787ffb4.zip
* doprnt.c, indent.c, character.c: conform to C89 pointer rules
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