summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-03-12 03:48:12 +0000
committerJim Blandy <jimb@redhat.com>1992-03-12 03:48:12 +0000
commit6a6ebff8ac52945855b1aaafb4bbae1cd7c3166b (patch)
treed4a8483e225e8ca39fd23c2dbc74be514a22be77 /src/eval.c
parent67ac746b8fdc240600beaa4e61d190d8064b959a (diff)
downloademacs-6a6ebff8ac52945855b1aaafb4bbae1cd7c3166b.tar.gz
*** empty log message ***
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index e82fba1559e..a030ff8b700 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1,5 +1,5 @@
/* Evaluator for GNU Emacs Lisp interpreter.
- Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
+ Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -1837,7 +1837,11 @@ Thus, (funcall 'cons 'x 'y) returns (x . y).")
goto done;
default:
- error ("funcall: this number of args not handled.");
+
+ /* If a subr takes more than 6 arguments without using MANY
+ or UNEVALLED, we need to extend this function to support it.
+ Until this is done, there is no way to call the function. */
+ abort ();
}
}
if (XTYPE (fun) == Lisp_Compiled)