diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-05 22:21:28 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-05 22:21:28 +0000 |
commit | a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0 (patch) | |
tree | 9ca09d12c605ce9155e55ad82476c9a6d6ebedcd /lisp/emacs-lisp/bytecomp.el | |
parent | 60d0378e485ded218121a8b8d6ce582e47882fac (diff) | |
download | emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.tar.gz emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.tar.bz2 emacs-a7acbbe4d48af3113de2dfaf836a42f2a9b6c2b0.zip |
Comment fixes.
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 20d54630dad..4efe6cd8f90 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -938,7 +938,7 @@ otherwise pop it") (defun byte-compile-arglist-signatures-congruent-p (old new) (not (or (> (car new) (car old)) ; requires more args now - (and (null (cdr old)) ; tooks rest-args, doesn't any more + (and (null (cdr old)) ; took rest-args, doesn't any more (cdr new)) (and (cdr new) (cdr old) ; can't take as many args now (< (cdr new) (cdr old))) @@ -1381,7 +1381,7 @@ With argument, insert value in current buffer after the form." ;; Compile pending forms at end of file. (byte-compile-flush-pending) (byte-compile-warn-about-unresolved-functions) - ;; SHould we always do this? When calling multiple files, it + ;; Should we always do this? When calling multiple files, it ;; would be useful to delay this warning until all have ;; been compiled. (setq byte-compile-unresolved-functions nil)))) |