diff options
| author | Stefan Monnier | 2001-10-12 03:44:45 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-10-12 03:44:45 +0000 |
| commit | 01e85d6147700e32a642ef98ca674ed844e91e88 (patch) | |
| tree | 4af34694e5cb27a62fd68567bfe4136aad655d7b /src | |
| parent | c0ec53ad99ba41fca0f34440c232c8ad203f4259 (diff) | |
| download | emacs-01e85d6147700e32a642ef98ca674ed844e91e88.tar.gz emacs-01e85d6147700e32a642ef98ca674ed844e91e88.zip | |
(Fcall_interactively): Remove unused code. Use XCAR/XCDR.
Diffstat (limited to 'src')
| -rw-r--r-- | src/callint.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/callint.c b/src/callint.c index caacef7565a..5aff585c4d5 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -259,9 +259,6 @@ supply if the command inquires which events were used to invoke it.") | |||
| 259 | function = wrong_type_argument (Qcommandp, function); | 259 | function = wrong_type_argument (Qcommandp, function); |
| 260 | goto retry; | 260 | goto retry; |
| 261 | } | 261 | } |
| 262 | if ((EMACS_INT) string == 1) | ||
| 263 | /* Let SPECS (which is nil) be used as the args. */ | ||
| 264 | string = 0; | ||
| 265 | } | 262 | } |
| 266 | else if (COMPILEDP (fun)) | 263 | else if (COMPILEDP (fun)) |
| 267 | { | 264 | { |
| @@ -271,7 +268,7 @@ supply if the command inquires which events were used to invoke it.") | |||
| 271 | } | 268 | } |
| 272 | else if (!CONSP (fun)) | 269 | else if (!CONSP (fun)) |
| 273 | goto lose; | 270 | goto lose; |
| 274 | else if (funcar = Fcar (fun), EQ (funcar, Qautoload)) | 271 | else if (funcar = XCAR (fun), EQ (funcar, Qautoload)) |
| 275 | { | 272 | { |
| 276 | GCPRO2 (function, prefix_arg); | 273 | GCPRO2 (function, prefix_arg); |
| 277 | do_autoload (fun, function); | 274 | do_autoload (fun, function); |
| @@ -280,7 +277,7 @@ supply if the command inquires which events were used to invoke it.") | |||
| 280 | } | 277 | } |
| 281 | else if (EQ (funcar, Qlambda)) | 278 | else if (EQ (funcar, Qlambda)) |
| 282 | { | 279 | { |
| 283 | specs = Fassq (Qinteractive, Fcdr (Fcdr (fun))); | 280 | specs = Fassq (Qinteractive, Fcdr (XCDR (fun))); |
| 284 | if (NILP (specs)) | 281 | if (NILP (specs)) |
| 285 | goto lose; | 282 | goto lose; |
| 286 | specs = Fcar (Fcdr (specs)); | 283 | specs = Fcar (Fcdr (specs)); |