diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-07-02 00:41:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-07-02 00:41:28 +0000 |
commit | b09cf097809c74d08ef07c1f6d5afb618c534476 (patch) | |
tree | 1a336177dc948b80c1a35ee49dcd4e3a696e8c2a | |
parent | 84ce8d8fb1617eb826115ef66d7bec7d6f833999 (diff) | |
download | emacs-b09cf097809c74d08ef07c1f6d5afb618c534476.tar.gz |
(byte-compile-defalias): Fix typo in prev change.
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index b36bc6d6d78..b63fe995798 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2850,7 +2850,7 @@ If FORM is a lambda or a macro, byte-compile it as a function." (cons (cons (nth 1 (nth 1 form)) (nth 1 (nth 2 form))) byte-compile-function-environment)))) - (byte-compile-normal-call form))) + (byte-compile-normal-call form)) ;; Turn off warnings about prior calls to the function being defalias'd. ;; This could be smarter and compare those calls with |