diff options
| author | Pavel Janík | 2001-11-02 20:46:55 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-02 20:46:55 +0000 |
| commit | b78265036088d5d0eac2a03b929adb50aa59b45c (patch) | |
| tree | de99fe733144deb926fd31ee7bdff95cb1bc5073 /src/undo.c | |
| parent | 00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4 (diff) | |
| download | emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.tar.gz emacs-b78265036088d5d0eac2a03b929adb50aa59b45c.zip | |
Update usage of CHECK_ macros (remove unused second argument).
Diffstat (limited to 'src/undo.c')
| -rw-r--r-- | src/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index 0c87a599bcd..ec6f9d6b1db 100644 --- a/src/undo.c +++ b/src/undo.c | |||
| @@ -407,7 +407,7 @@ Return what remains of the list. */) | |||
| 407 | list = Fcdr (list); | 407 | list = Fcdr (list); |
| 408 | #endif | 408 | #endif |
| 409 | 409 | ||
| 410 | CHECK_NUMBER (n, 0); | 410 | CHECK_NUMBER (n); |
| 411 | arg = XINT (n); | 411 | arg = XINT (n); |
| 412 | next = Qnil; | 412 | next = Qnil; |
| 413 | GCPRO2 (next, list); | 413 | GCPRO2 (next, list); |