diff options
| author | Paul Eggert | 2011-09-21 16:22:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-21 16:22:29 -0700 |
| commit | 7c85f529fd12a8cb12eb85944877d0a52b6380a7 (patch) | |
| tree | 03c5c25e70d8de6a2ad4ccfcbb634738fdf6e3a3 /src/syntax.c | |
| parent | 2972b14b555f5738db202e930e5ecba6497e49e0 (diff) | |
| download | emacs-7c85f529fd12a8cb12eb85944877d0a52b6380a7.tar.gz emacs-7c85f529fd12a8cb12eb85944877d0a52b6380a7.zip | |
Fix ptrdiff_t/EMACS_INT confusion.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 2556a04498e..c76ffd95bf3 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -2251,7 +2251,7 @@ between them, return t; otherwise return nil. */) | |||
| 2251 | int found; | 2251 | int found; |
| 2252 | EMACS_INT count1; | 2252 | EMACS_INT count1; |
| 2253 | ptrdiff_t out_charpos, out_bytepos; | 2253 | ptrdiff_t out_charpos, out_bytepos; |
| 2254 | ptrdiff_t dummy; | 2254 | EMACS_INT dummy; |
| 2255 | 2255 | ||
| 2256 | CHECK_NUMBER (count); | 2256 | CHECK_NUMBER (count); |
| 2257 | count1 = XINT (count); | 2257 | count1 = XINT (count); |
| @@ -2473,7 +2473,7 @@ scan_lists (register EMACS_INT from, EMACS_INT count, EMACS_INT depth, int sexpf | |||
| 2473 | ptrdiff_t from_byte; | 2473 | ptrdiff_t from_byte; |
| 2474 | ptrdiff_t out_bytepos, out_charpos; | 2474 | ptrdiff_t out_bytepos, out_charpos; |
| 2475 | int temp; | 2475 | int temp; |
| 2476 | ptrdiff_t dummy; | 2476 | EMACS_INT dummy; |
| 2477 | int multibyte_symbol_p = sexpflag && multibyte_syntax_as_symbol; | 2477 | int multibyte_symbol_p = sexpflag && multibyte_syntax_as_symbol; |
| 2478 | 2478 | ||
| 2479 | if (depth > 0) min_depth = 0; | 2479 | if (depth > 0) min_depth = 0; |