aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-10 19:50:56 +0000
committerRichard M. Stallman <[email protected]>1996-09-10 19:50:56 +0000
commit45b248b417774953f55c2c3d2b78e7f1df986078 (patch)
treee2f5140d7b60b57c2fbabd6432c4983e434fe29b /src
parent4e98d4faa2002c6a574f7fab038ccea1ea9947e8 (diff)
(search_buffer): Use EMACS_UINT.
Diffstat (limited to 'src')
-rw-r--r--src/search.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c
index bfc5add20d..6f4355f5b8 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1183,7 +1183,7 @@ search_buffer (string, pos, lim, n, RE, trt, inverse_trt, posix)
while ((EMACS_INT) cursor <= (EMACS_INT) p_limit)
cursor += BM_tab[*cursor];
else
- while ((unsigned EMACS_INT) cursor <= (unsigned EMACS_INT) p_limit)
+ while ((EMACS_UINT) cursor <= (EMACS_UINT) p_limit)
cursor += BM_tab[*cursor];
}
else
@@ -1192,7 +1192,7 @@ search_buffer (string, pos, lim, n, RE, trt, inverse_trt, posix)
while ((EMACS_INT) cursor >= (EMACS_INT) p_limit)
cursor += BM_tab[*cursor];
else
- while ((unsigned EMACS_INT) cursor >= (unsigned EMACS_INT) p_limit)
+ while ((EMACS_UINT) cursor >= (EMACS_UINT) p_limit)
cursor += BM_tab[*cursor];
}
/* If you are here, cursor is beyond the end of the searched region. */