diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/intervals.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/intervals.c')
| -rw-r--r-- | src/intervals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intervals.c b/src/intervals.c index 370bca4a247..b6a6caaa738 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -145,7 +145,7 @@ intervals_equal (i0, i1) | |||
| 145 | INTERVAL i0, i1; | 145 | INTERVAL i0, i1; |
| 146 | { | 146 | { |
| 147 | register Lisp_Object i0_cdr, i0_sym, i1_val; | 147 | register Lisp_Object i0_cdr, i0_sym, i1_val; |
| 148 | register i1_len; | 148 | register int i1_len; |
| 149 | 149 | ||
| 150 | if (DEFAULT_INTERVAL_P (i0) && DEFAULT_INTERVAL_P (i1)) | 150 | if (DEFAULT_INTERVAL_P (i0) && DEFAULT_INTERVAL_P (i1)) |
| 151 | return 1; | 151 | return 1; |
| @@ -640,7 +640,7 @@ previous_interval (interval) | |||
| 640 | register INTERVAL interval; | 640 | register INTERVAL interval; |
| 641 | { | 641 | { |
| 642 | register INTERVAL i; | 642 | register INTERVAL i; |
| 643 | register position_of_previous; | 643 | register int position_of_previous; |
| 644 | 644 | ||
| 645 | if (NULL_INTERVAL_P (interval)) | 645 | if (NULL_INTERVAL_P (interval)) |
| 646 | return NULL_INTERVAL; | 646 | return NULL_INTERVAL; |