From: Glenn Morris Date: Wed, 17 Jun 2015 00:44:23 +0000 (-0400) Subject: Address a compilation warning. X-Git-Tag: emacs-25.0.90~1731 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c07e67aaafc5374ad6f26a5f6c631f19a9256969;p=emacs.git Address a compilation warning. * lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defalias): Replace 't' with '_' in pcase. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index baa08e754a1..197df3b8815 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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)