Mercurial > emacs
diff lisp/emacs-lisp/bytecomp.el @ 14040:187735b53d52
Comment fixes.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 05 Jan 1996 22:21:28 +0000 |
parents | 1feec098c24d |
children | 83f275dcd93a |
line wrap: on
line diff
--- a/lisp/emacs-lisp/bytecomp.el Fri Jan 05 21:57:54 1996 +0000 +++ b/lisp/emacs-lisp/bytecomp.el Fri Jan 05 22:21:28 1996 +0000 @@ -938,7 +938,7 @@ (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 @@ ;; 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))))