diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-14 08:43:18 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-16 19:37:07 +0200 |
commit | 63f419f1339cbd0a7d1e64586854a4f01b3f80d1 (patch) | |
tree | 80bce487ec8c4f7d8258d13a49b21cb4eb3f289b /lisp/arc-mode.el | |
parent | 36474a1e490a5eae266805a0e04615741d56692c (diff) | |
download | emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.gz emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.tar.bz2 emacs-63f419f1339cbd0a7d1e64586854a4f01b3f80d1.zip |
; Minor stylistic fixes found by checkdoc
Diffstat (limited to 'lisp/arc-mode.el')
-rw-r--r-- | lisp/arc-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index 71ad7bd0c5d..5576ae35053 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el @@ -1759,7 +1759,7 @@ This doesn't recover lost files, it just undoes changes in the buffer itself." neh ;beginning of next extension header (level 1 and 2) mode uid gid dir prname gname uname modtime moddate) - (if (= hdrlvl 3) (error "can't handle lzh level 3 header type")) + (if (= hdrlvl 3) (error "Can't handle lzh level 3 header type")) (when (or (= hdrlvl 0) (= hdrlvl 1)) (setq fnlen (get-byte (+ p 21))) ;filename length (setq efnname (let ((str (buffer-substring (+ p 22) (+ p 22 fnlen)))) ;filename from offset 22 |