emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c07e67a 1/3: Address a compilation warning.


From: Glenn Morris
Subject: [Emacs-diffs] master c07e67a 1/3: Address a compilation warning.
Date: Wed, 17 Jun 2015 00:45:50 +0000

branch: master
commit c07e67aaafc5374ad6f26a5f6c631f19a9256969
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    Address a compilation warning.
    
    * lisp/emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
    Replace 't' with '_' in pcase.
---
 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 baa08e7..197df3b 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]