diff options
| author | Glenn Morris | 2015-06-16 20:28:48 -0400 |
|---|---|---|
| committer | Glenn Morris | 2015-06-16 20:28:48 -0400 |
| commit | d5152a7eef9dbb8b6953f9efdd44bcdbca2311dd (patch) | |
| tree | 79bdf051e029151a53abc5fe632f3cc9970d5200 /lisp/vc | |
| parent | 55b41a82cdbb682a4657ddc47d194e5813cf262b (diff) | |
| download | emacs-d5152a7eef9dbb8b6953f9efdd44bcdbca2311dd.tar.gz emacs-d5152a7eef9dbb8b6953f9efdd44bcdbca2311dd.zip | |
Address some compilation warnings.
* lisp/elec-pair.el (electric-pair-post-self-insert-function):
* lisp/vc/vc-git.el (vc-git-file-type-as-string):
Replace 't' with '_' in pcase.
Diffstat (limited to 'lisp/vc')
| -rw-r--r-- | lisp/vc/vc-git.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index e3cd5d4e3dc..9522328cae8 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -308,12 +308,12 @@ matching the resulting Git log output, and KEYWORDS is a list of | |||
| 308 | (pcase old-type | 308 | (pcase old-type |
| 309 | (?\100 " (type change file -> symlink)") | 309 | (?\100 " (type change file -> symlink)") |
| 310 | (?\160 " (type change subproject -> symlink)") | 310 | (?\160 " (type change subproject -> symlink)") |
| 311 | (t " (symlink)"))) | 311 | (_ " (symlink)"))) |
| 312 | (?\160 ;; Subproject. | 312 | (?\160 ;; Subproject. |
| 313 | (pcase old-type | 313 | (pcase old-type |
| 314 | (?\100 " (type change file -> subproject)") | 314 | (?\100 " (type change file -> subproject)") |
| 315 | (?\120 " (type change symlink -> subproject)") | 315 | (?\120 " (type change symlink -> subproject)") |
| 316 | (t " (subproject)"))) | 316 | (_ " (subproject)"))) |
| 317 | (?\110 nil) ;; Directory (internal, not a real git state). | 317 | (?\110 nil) ;; Directory (internal, not a real git state). |
| 318 | (?\000 ;; Deleted or unknown. | 318 | (?\000 ;; Deleted or unknown. |
| 319 | (pcase old-type | 319 | (pcase old-type |