diff options
| author | Paul Eggert | 2019-09-16 14:04:04 -0700 |
|---|---|---|
| committer | Paul Eggert | 2019-09-16 14:05:03 -0700 |
| commit | 2c2f0eb9fcdfb644c106679999501b9c7edf51e2 (patch) | |
| tree | 427a67f412721cb232fcc9e89df4d3b32a4d47ec /src/callint.c | |
| parent | 57ac6523af76efe6f6767c5480b2832cdd3adc4d (diff) | |
| download | emacs-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/callint.c')
| -rw-r--r-- | src/callint.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index d76836f32b2..449b5048609 100644 --- a/src/callint.c +++ b/src/callint.c | |||
| @@ -35,7 +35,6 @@ static Lisp_Object point_marker; | |||
| 35 | /* String for the prompt text used in Fcall_interactively. */ | 35 | /* String for the prompt text used in Fcall_interactively. */ |
| 36 | static Lisp_Object callint_message; | 36 | static Lisp_Object callint_message; |
| 37 | 37 | ||
| 38 | /* ARGSUSED */ | ||
| 39 | DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, | 38 | DEFUN ("interactive", Finteractive, Sinteractive, 0, UNEVALLED, 0, |
| 40 | doc: /* Specify a way of parsing arguments for interactive use of a function. | 39 | doc: /* Specify a way of parsing arguments for interactive use of a function. |
| 41 | For example, write | 40 | For example, write |