aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorJim Blandy1992-03-12 03:48:12 +0000
committerJim Blandy1992-03-12 03:48:12 +0000
commit70ee42f75d671390dfd0c33243e5e93b8fb9570d (patch)
tree976460bc28da3cda85639757cae7612f2f4e21b9 /src/eval.c
parent03759fe00303a19cff5ce1cd1d6408c97ce2c929 (diff)
downloademacs-70ee42f75d671390dfd0c33243e5e93b8fb9570d.tar.gz
emacs-70ee42f75d671390dfd0c33243e5e93b8fb9570d.zip
*** 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 @@
1/* Evaluator for GNU Emacs Lisp interpreter. 1/* Evaluator for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. 2 Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -1837,7 +1837,11 @@ Thus, (funcall 'cons 'x 'y) returns (x . y).")
1837 goto done; 1837 goto done;
1838 1838
1839 default: 1839 default:
1840 error ("funcall: this number of args not handled."); 1840
1841 /* If a subr takes more than 6 arguments without using MANY
1842 or UNEVALLED, we need to extend this function to support it.
1843 Until this is done, there is no way to call the function. */
1844 abort ();
1841 } 1845 }
1842 } 1846 }
1843 if (XTYPE (fun) == Lisp_Compiled) 1847 if (XTYPE (fun) == Lisp_Compiled)