Address some compilation warnings.

* lisp/face-remap.el (text-scale-adjust):
* lisp/menu-bar.el (popup-menu-normalize-position):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand):
* lisp/emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
* lisp/emacs-lisp/generator.el (cps--transform-1):
* lisp/emacs-lisp/macroexp.el (macroexp--expand-all):
* lisp/obsolete/vc-arch.el (vc-arch-mode-line-string):
* lisp/progmodes/octave.el (octave-goto-function-definition)
(octave-find-definition-default-filename):
Replace 't' with '_' in pcase.
This commit is contained in:
Glenn Morris 2015-06-16 20:04:35 -04:00
parent cf94a3e0c4
commit 55b41a82cd
8 changed files with 9 additions and 9 deletions

View file

@ -292,7 +292,7 @@
(format "Inlining closure %S failed" name)) (format "Inlining closure %S failed" name))
form)))) form))))
(t ;; Give up on inlining. (_ ;; Give up on inlining.
form)))) form))))
;; ((lambda ...) ...) ;; ((lambda ...) ...)

View file

@ -1417,7 +1417,7 @@ extra args."
(`(lambda ,args . ,_) args) (`(lambda ,args . ,_) args)
(`(closure ,_ ,args . ,_) args) (`(closure ,_ ,args . ,_) args)
((pred byte-code-function-p) (aref old 0)) ((pred byte-code-function-p) (aref old 0))
(t '(&rest def))))) (_ '(&rest def)))))
(sig2 (byte-compile-arglist-signature arglist))) (sig2 (byte-compile-arglist-signature arglist)))
(unless (byte-compile-arglist-signatures-congruent-p sig1 sig2) (unless (byte-compile-arglist-signatures-congruent-p sig1 sig2)
(byte-compile-set-symbol-position name) (byte-compile-set-symbol-position name)

View file

@ -507,7 +507,7 @@ don't yield.")
next-state))) next-state)))
;; Process everything else by just evaluating the form normally. ;; Process everything else by just evaluating the form normally.
(t (cps--make-atomic-state form next-state)))) (_ (cps--make-atomic-state form next-state))))
(defun cps--make-catch-wrapper (tag-binding next-state) (defun cps--make-catch-wrapper (tag-binding next-state)
(lambda (form) (lambda (form)

View file

@ -284,7 +284,7 @@ Assumes the caller has bound `macroexpand-all-environment'."
(macroexp--expand-all newform))) (macroexp--expand-all newform)))
(macroexp--expand-all newform)))))) (macroexp--expand-all newform))))))
(t form)))) (_ form))))
;;;###autoload ;;;###autoload
(defun macroexpand-all (form &optional environment) (defun macroexpand-all (form &optional environment)

View file

@ -330,7 +330,7 @@ a top-level keymap, `text-scale-increase' or
((or ?+ ?=) inc) ((or ?+ ?=) inc)
(?- (- inc)) (?- (- inc))
(?0 0) (?0 0)
(t inc)))) (_ inc))))
(text-scale-increase step) (text-scale-increase step)
;; (unless (zerop step) ;; (unless (zerop step)
(message "Use +,-,0 for further adjustment") (message "Use +,-,0 for further adjustment")

View file

@ -2258,7 +2258,7 @@ If nil, the current mouse position is used."
;; Event. ;; Event.
((pred eventp) ((pred eventp)
(popup-menu-normalize-position (event-end position))) (popup-menu-normalize-position (event-end position)))
(t position))) (_ position)))
(defcustom tty-menu-open-use-tmm nil (defcustom tty-menu-open-use-tmm nil
"If non-nil, \\[menu-bar-open] on a TTY will invoke `tmm-menubar'. "If non-nil, \\[menu-bar-open] on a TTY will invoke `tmm-menubar'.

View file

@ -397,7 +397,7 @@ CALLBACK expects (ENTRIES &optional MORE-TO-COME); see
(pcase (vc-state file) (pcase (vc-state file)
((or `up-to-date `needs-update) ?-) ((or `up-to-date `needs-update) ?-)
(`added ?@) (`added ?@)
(t ?:)) (_ ?:))
rev))) rev)))
(defun vc-arch-diff3-rej-p (rej) (defun vc-arch-diff3-rej-p (rej)

View file

@ -1064,7 +1064,7 @@ directory and makes this the current buffer's default directory."
(pcase (and buffer-file-name (file-name-extension buffer-file-name)) (pcase (and buffer-file-name (file-name-extension buffer-file-name))
(`"cc" (funcall search (`"cc" (funcall search
"\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1)) "\\_<DEFUN\\(?:_DLD\\)?\\s-*(\\s-*\\(\\(?:\\sw\\|\\s_\\)+\\)" 1))
(t (funcall search octave-function-header-regexp 3))))) (_ (funcall search octave-function-header-regexp 3)))))
(defun octave-function-file-p () (defun octave-function-file-p ()
"Return non-nil if the first token is \"function\". "Return non-nil if the first token is \"function\".
@ -1820,7 +1820,7 @@ If the environment variable OCTAVE_SRCDIR is set, it is searched first."
(file-name-nondirectory name))) (file-name-nondirectory name)))
name name
(user-error "Aborted"))) (user-error "Aborted")))
(t name))) (_ name)))
(defvar find-tag-marker-ring) (defvar find-tag-marker-ring)