diff options
| author | Tino Calancha | 2017-08-13 23:38:29 +0900 |
|---|---|---|
| committer | Tino Calancha | 2017-08-13 23:38:29 +0900 |
| commit | 00bc04f60614907c8042a9f2eb73cc8062006649 (patch) | |
| tree | 18095faaae9df70cbfdd388d4ab90039d5e07b34 | |
| parent | 0b858d9a88509e1ad67826fec57cb6ecaf8812f2 (diff) | |
| download | emacs-00bc04f60614907c8042a9f2eb73cc8062006649.tar.gz emacs-00bc04f60614907c8042a9f2eb73cc8062006649.zip | |
* lisp/tar-mode.el (tar-grind-file-mode): Fix docstring
| -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." | |||
| 469 | (concat " " (substring str 4 16) (format-time-string " %Y" time)))) | 469 | (concat " " (substring str 4 16) (format-time-string " %Y" time)))) |
| 470 | 470 | ||
| 471 | (defun tar-grind-file-mode (mode) | 471 | (defun tar-grind-file-mode (mode) |
| 472 | "Construct a `-rw--r--r--' string indicating MODE. | 472 | "Construct a `rw-r--r--' string indicating MODE. |
| 473 | MODE should be an integer which is a file mode value." | 473 | MODE should be an integer which is a file mode value." |
| 474 | (string | 474 | (string |
| 475 | (if (zerop (logand 256 mode)) ?- ?r) | 475 | (if (zerop (logand 256 mode)) ?- ?r) |