diff options
| author | Paul Eggert | 2011-04-04 00:53:20 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-04 00:53:20 -0700 |
| commit | 12cbf13fe46123b574a1dff5ac246e3e7d514623 (patch) | |
| tree | 14896bf48f3538c0253317b2ce88b1426dab0e2c /src/syntax.c | |
| parent | fca8fe46b72cab72cc06a7b20f6750d641959b7c (diff) | |
| download | emacs-12cbf13fe46123b574a1dff5ac246e3e7d514623.tar.gz emacs-12cbf13fe46123b574a1dff5ac246e3e7d514623.zip | |
* syntax.c (update_syntax_table): Use unsigned instead of int.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 892cec65697..56176f32418 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -175,7 +175,8 @@ update_syntax_table (EMACS_INT charpos, int count, int init, | |||
| 175 | Lisp_Object object) | 175 | Lisp_Object object) |
| 176 | { | 176 | { |
| 177 | Lisp_Object tmp_table; | 177 | Lisp_Object tmp_table; |
| 178 | int cnt = 0, invalidate = 1; | 178 | unsigned cnt = 0; |
| 179 | int invalidate = 1; | ||
| 179 | INTERVAL i; | 180 | INTERVAL i; |
| 180 | 181 | ||
| 181 | if (init) | 182 | if (init) |