aboutsummaryrefslogtreecommitdiff
path: root/compat-28.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-01-05 15:38:06 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2023-01-05 15:38:06 +0100
commit8d4dfded6c30988bc8b6b444e010d526c246d73a (patch)
tree1e7d4104c9115b235e070d1594f2c219bdb140c5 /compat-28.el
parent15ae65b0f85ee21878ee3a86a387520963942eb2 (diff)
Use ash
Diffstat (limited to 'compat-28.el')
-rw-r--r--compat-28.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat-28.el b/compat-28.el
index 7a73c26..33d52f9 100644
--- a/compat-28.el
+++ b/compat-28.el
@@ -606,7 +606,7 @@ such as `?d' for a directory, or `?l' for a symbolic link and will override
the leading `-' char."
(string
(or filetype
- (pcase (lsh mode -12)
+ (pcase (ash mode -12)
;; POSIX specifies that the file type is included in st_mode
;; and provides names for the file types but values only for
;; the permissions (e.g., S_IWOTH=2).