Skip to content

Commit

Permalink
Address a compilation warning.
Browse files Browse the repository at this point in the history
* lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
Replace 't' with '_' in pcase.
  • Loading branch information
rgmorris committed Jun 17, 2015
1 parent fb77502 commit c07e67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp/emacs-lisp/bytecomp.el
Original file line number Diff line number Diff line change
Expand Up @@ -4416,7 +4416,7 @@ binding slots have been popped."
;; which is to call back byte-compile-file-form and then return nil.
;; Except that we can't just call byte-compile-file-form since it would
;; call us right back.
(t (byte-compile-keep-pending form)))))
(_ (byte-compile-keep-pending form)))))

(byte-defop-compiler-1 with-no-warnings byte-compile-no-warnings)
(defun byte-compile-no-warnings (form)
Expand Down

0 comments on commit c07e67a

Please sign in to comment.