aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorPaul Eggert2019-09-16 14:04:04 -0700
committerPaul Eggert2019-09-16 14:05:03 -0700
commit2c2f0eb9fcdfb644c106679999501b9c7edf51e2 (patch)
tree427a67f412721cb232fcc9e89df4d3b32a4d47ec /src/eval.c
parent57ac6523af76efe6f6767c5480b2832cdd3adc4d (diff)
downloademacs-2c2f0eb9fcdfb644c106679999501b9c7edf51e2.tar.gz
emacs-2c2f0eb9fcdfb644c106679999501b9c7edf51e2.zip
Remove obsolete Lint directives
Most of the directives were wrong anyway. Apparently traditional lint hasn’t been used to check Emacs for years. * src/callint.c (Finteractive): * src/cm.c (evalcost): * src/emacs.c (main): * src/eval.c (call1, call2, call3, call4, call5, call6, call7, call8): * src/fns.c (concat2, concat3, nconc2): * src/term.c (calculate_ins_del_char_costs): Omit ARGSUSED comments. * src/eval.c (call1): Omit VARARGS comment.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/eval.c b/src/eval.c
index 06d5c63f7f7..2bfc16eae0e 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1890,7 +1890,6 @@ verror (const char *m, va_list ap)
1890 1890
1891/* Dump an error message; called like printf. */ 1891/* Dump an error message; called like printf. */
1892 1892
1893/* VARARGS 1 */
1894void 1893void
1895error (const char *m, ...) 1894error (const char *m, ...)
1896{ 1895{
@@ -2649,7 +2648,6 @@ call0 (Lisp_Object fn)
2649} 2648}
2650 2649
2651/* Call function fn with 1 argument arg1. */ 2650/* Call function fn with 1 argument arg1. */
2652/* ARGSUSED */
2653Lisp_Object 2651Lisp_Object
2654call1 (Lisp_Object fn, Lisp_Object arg1) 2652call1 (Lisp_Object fn, Lisp_Object arg1)
2655{ 2653{
@@ -2657,7 +2655,6 @@ call1 (Lisp_Object fn, Lisp_Object arg1)
2657} 2655}
2658 2656
2659/* Call function fn with 2 arguments arg1, arg2. */ 2657/* Call function fn with 2 arguments arg1, arg2. */
2660/* ARGSUSED */
2661Lisp_Object 2658Lisp_Object
2662call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2) 2659call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2663{ 2660{
@@ -2665,7 +2662,6 @@ call2 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2)
2665} 2662}
2666 2663
2667/* Call function fn with 3 arguments arg1, arg2, arg3. */ 2664/* Call function fn with 3 arguments arg1, arg2, arg3. */
2668/* ARGSUSED */
2669Lisp_Object 2665Lisp_Object
2670call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3) 2666call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
2671{ 2667{
@@ -2673,7 +2669,6 @@ call3 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3)
2673} 2669}
2674 2670
2675/* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */ 2671/* Call function fn with 4 arguments arg1, arg2, arg3, arg4. */
2676/* ARGSUSED */
2677Lisp_Object 2672Lisp_Object
2678call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, 2673call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2679 Lisp_Object arg4) 2674 Lisp_Object arg4)
@@ -2682,7 +2677,6 @@ call4 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2682} 2677}
2683 2678
2684/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */ 2679/* Call function fn with 5 arguments arg1, arg2, arg3, arg4, arg5. */
2685/* ARGSUSED */
2686Lisp_Object 2680Lisp_Object
2687call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, 2681call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2688 Lisp_Object arg4, Lisp_Object arg5) 2682 Lisp_Object arg4, Lisp_Object arg5)
@@ -2691,7 +2685,6 @@ call5 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2691} 2685}
2692 2686
2693/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */ 2687/* Call function fn with 6 arguments arg1, arg2, arg3, arg4, arg5, arg6. */
2694/* ARGSUSED */
2695Lisp_Object 2688Lisp_Object
2696call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, 2689call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2697 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6) 2690 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6)
@@ -2700,7 +2693,6 @@ call6 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2700} 2693}
2701 2694
2702/* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */ 2695/* Call function fn with 7 arguments arg1, arg2, arg3, arg4, arg5, arg6, arg7. */
2703/* ARGSUSED */
2704Lisp_Object 2696Lisp_Object
2705call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, 2697call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2706 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7) 2698 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7)
@@ -2710,7 +2702,6 @@ call7 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2710 2702
2711/* Call function fn with 8 arguments arg1, arg2, arg3, arg4, arg5, 2703/* Call function fn with 8 arguments arg1, arg2, arg3, arg4, arg5,
2712 arg6, arg7, arg8. */ 2704 arg6, arg7, arg8. */
2713/* ARGSUSED */
2714Lisp_Object 2705Lisp_Object
2715call8 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3, 2706call8 (Lisp_Object fn, Lisp_Object arg1, Lisp_Object arg2, Lisp_Object arg3,
2716 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7, 2707 Lisp_Object arg4, Lisp_Object arg5, Lisp_Object arg6, Lisp_Object arg7,