diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index 597345c129c..89690fe5399 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -1276,7 +1276,8 @@ static void | |||
| 1276 | print_preprocess (obj) | 1276 | print_preprocess (obj) |
| 1277 | Lisp_Object obj; | 1277 | Lisp_Object obj; |
| 1278 | { | 1278 | { |
| 1279 | int i, size; | 1279 | int i; |
| 1280 | EMACS_INT size; | ||
| 1280 | 1281 | ||
| 1281 | loop: | 1282 | loop: |
| 1282 | if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) | 1283 | if (STRINGP (obj) || CONSP (obj) || VECTORP (obj) |
| @@ -1891,7 +1892,7 @@ print_object (obj, printcharfun, escapeflag) | |||
| 1891 | } | 1892 | } |
| 1892 | else | 1893 | else |
| 1893 | { | 1894 | { |
| 1894 | int size = XVECTOR (obj)->size; | 1895 | EMACS_INT size = XVECTOR (obj)->size; |
| 1895 | if (COMPILEDP (obj)) | 1896 | if (COMPILEDP (obj)) |
| 1896 | { | 1897 | { |
| 1897 | PRINTCHAR ('#'); | 1898 | PRINTCHAR ('#'); |