diff options
Diffstat (limited to 'lisp/vc/vc-git.el')
| -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 75f458233ee..96c2f38af42 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -367,8 +367,8 @@ in the order given by 'git status'." | |||
| 367 | 367 | ||
| 368 | (defun vc-git-file-type-as-string (old-perm new-perm) | 368 | (defun vc-git-file-type-as-string (old-perm new-perm) |
| 369 | "Return a string describing the file type based on its permissions." | 369 | "Return a string describing the file type based on its permissions." |
| 370 | (let* ((old-type (lsh (or old-perm 0) -9)) | 370 | (let* ((old-type (ash (or old-perm 0) -9)) |
| 371 | (new-type (lsh (or new-perm 0) -9)) | 371 | (new-type (ash (or new-perm 0) -9)) |
| 372 | (str (pcase new-type | 372 | (str (pcase new-type |
| 373 | (?\100 ;; File. | 373 | (?\100 ;; File. |
| 374 | (pcase old-type | 374 | (pcase old-type |