From: Jim Porter Date: Tue, 30 Jan 2024 01:33:35 +0000 (-0800) Subject: Fix typo in Eshell's "du" command X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~2740 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a470dfb7f8a0f6d561b1f7c9665408d73b578e18;p=emacs.git Fix typo in Eshell's "du" command This option is supposed to be "--si", for "International System of Units", not "--is". * lisp/eshell/em-unix.el (eshell/du): Change "is" to "si". --- diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el index c3c3fea691a..a88c7e09946 100644 --- a/lisp/eshell/em-unix.el +++ b/lisp/eshell/em-unix.el @@ -940,7 +940,7 @@ external command." "display data only this many levels of data") (?h "human-readable" 1024 human-readable "print sizes in human readable format") - (?H "is" 1000 human-readable + (?H "si" 1000 human-readable "likewise, but use powers of 1000 not 1024") (?k "kilobytes" 1024 block-size "like --block-size 1024")