diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 25ac0e9764c..e8765aea96d 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -9291,7 +9291,7 @@ usage: (find-operation-coding-system OPERATION ARGUMENTS...) */) | |||
| 9291 | if (!SYMBOLP (operation) | 9291 | if (!SYMBOLP (operation) |
| 9292 | || (target_idx = Fget (operation, Qtarget_idx), !NATNUMP (target_idx))) | 9292 | || (target_idx = Fget (operation, Qtarget_idx), !NATNUMP (target_idx))) |
| 9293 | error ("Invalid first argument"); | 9293 | error ("Invalid first argument"); |
| 9294 | if (nargs < 1 + XFASTINT (target_idx)) | 9294 | if (nargs <= 1 + XFASTINT (target_idx)) |
| 9295 | error ("Too few arguments for operation `%s'", | 9295 | error ("Too few arguments for operation `%s'", |
| 9296 | SDATA (SYMBOL_NAME (operation))); | 9296 | SDATA (SYMBOL_NAME (operation))); |
| 9297 | target = args[XFASTINT (target_idx) + 1]; | 9297 | target = args[XFASTINT (target_idx) + 1]; |