diff options
| author | Richard M. Stallman | 1994-09-17 00:27:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-17 00:27:16 +0000 |
| commit | 132b933732fe8c95597e52c7a6749cfca3bd9c60 (patch) | |
| tree | b2b973a3a3b02fd2706eb342569b8e10887a5bd8 /src | |
| parent | 4d2f13893e7d7360254dd73b5303285cf09bcc40 (diff) | |
| download | emacs-132b933732fe8c95597e52c7a6749cfca3bd9c60.tar.gz emacs-132b933732fe8c95597e52c7a6749cfca3bd9c60.zip | |
(Fcall_interactively): Use EMACS_INT.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index 0f996e1b5f2..7645424c8c4 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -221,7 +221,7 @@ Otherwise, this is done only if an arg is read using the minibuffer.") | |||
| 221 | function = wrong_type_argument (Qcommandp, function); | 221 | function = wrong_type_argument (Qcommandp, function); |
| 222 | goto retry; | 222 | goto retry; |
| 223 | } | 223 | } |
| 224 | if ((int) string == 1) | 224 | if ((EMACS_INT) string == 1) |
| 225 | /* Let SPECS (which is nil) be used as the args. */ | 225 | /* Let SPECS (which is nil) be used as the args. */ |
| 226 | string = 0; | 226 | string = 0; |
| 227 | } | 227 | } |