]> git.eshelyaron.com Git - emacs.git/commitdiff
Address a compilation warning.
authorGlenn Morris <rgm@gnu.org>
Wed, 17 Jun 2015 00:44:23 +0000 (20:44 -0400)
committerGlenn Morris <rgm@gnu.org>
Wed, 17 Jun 2015 00:44:23 +0000 (20:44 -0400)
* lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
Replace 't' with '_' in pcase.

lisp/emacs-lisp/bytecomp.el

index baa08e754a1b90a0961d2d897930944d68bdb501..197df3b8815ea4fdbe283df9f419f0f0afbe56d3 100644 (file)
@@ -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)