diff options
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lread.c b/src/lread.c index f3ab1610d2c..b0413c98765 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -189,7 +189,7 @@ static int readbyte_from_string (int, Lisp_Object); | |||
| 189 | static int unread_char; | 189 | static int unread_char; |
| 190 | 190 | ||
| 191 | static int | 191 | static int |
| 192 | readchar (Lisp_Object readcharfun, int *multibyte) | 192 | readchar (Lisp_Object readcharfun, bool *multibyte) |
| 193 | { | 193 | { |
| 194 | Lisp_Object tem; | 194 | Lisp_Object tem; |
| 195 | register int c; | 195 | register int c; |
| @@ -2354,9 +2354,9 @@ read_integer (Lisp_Object readcharfun, EMACS_INT radix) | |||
| 2354 | static Lisp_Object | 2354 | static Lisp_Object |
| 2355 | read1 (register Lisp_Object readcharfun, int *pch, int first_in_list) | 2355 | read1 (register Lisp_Object readcharfun, int *pch, int first_in_list) |
| 2356 | { | 2356 | { |
| 2357 | register int c; | 2357 | int c; |
| 2358 | unsigned uninterned_symbol = 0; | 2358 | bool uninterned_symbol = 0; |
| 2359 | int multibyte; | 2359 | bool multibyte; |
| 2360 | 2360 | ||
| 2361 | *pch = 0; | 2361 | *pch = 0; |
| 2362 | load_each_byte = 0; | 2362 | load_each_byte = 0; |