summaryrefslogtreecommitdiff
path: root/lisp/face-remap.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2015-06-16 20:04:35 -0400
committerGlenn Morris <rgm@gnu.org>2015-06-16 20:04:35 -0400
commit55b41a82cdbb682a4657ddc47d194e5813cf262b (patch)
treebefb15c0a376e843765274c2e275c96244f5f2ed /lisp/face-remap.el
parentcf94a3e0c4320f74c1de8c9a887b1ed8e74163d3 (diff)
downloademacs-55b41a82cdbb682a4657ddc47d194e5813cf262b.tar.gz
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.
Diffstat (limited to 'lisp/face-remap.el')
-rw-r--r--lisp/face-remap.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el
index 93eec5bd13c..3a8aba566dc 100644
--- a/lisp/face-remap.el
+++ b/lisp/face-remap.el
@@ -330,7 +330,7 @@ a top-level keymap, `text-scale-increase' or
((or ?+ ?=) inc)
(?- (- inc))
(?0 0)
- (t inc))))
+ (_ inc))))
(text-scale-increase step)
;; (unless (zerop step)
(message "Use +,-,0 for further adjustment")