diff options
author | Tino Calancha <tino.calancha@gmail.com> | 2017-08-13 23:38:29 +0900 |
---|---|---|
committer | Tino Calancha <tino.calancha@gmail.com> | 2017-08-13 23:38:29 +0900 |
commit | 00bc04f60614907c8042a9f2eb73cc8062006649 (patch) | |
tree | 18095faaae9df70cbfdd388d4ab90039d5e07b34 /lisp/tar-mode.el | |
parent | 0b858d9a88509e1ad67826fec57cb6ecaf8812f2 (diff) | |
download | emacs-00bc04f60614907c8042a9f2eb73cc8062006649.tar.gz |
* lisp/tar-mode.el (tar-grind-file-mode): Fix docstring
Diffstat (limited to 'lisp/tar-mode.el')
-rw-r--r-- | lisp/tar-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index 1d453d2980e..b0d31776942 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -469,7 +469,7 @@ checksum before doing the check." (concat " " (substring str 4 16) (format-time-string " %Y" time)))) (defun tar-grind-file-mode (mode) - "Construct a `-rw--r--r--' string indicating MODE. + "Construct a `rw-r--r--' string indicating MODE. MODE should be an integer which is a file mode value." (string (if (zerop (logand 256 mode)) ?- ?r) |