chiark / gitweb /
dot/emacs-calc: Prefer lowercase `k' for kilobytes and kilobits.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 15 Mar 2018 21:01:51 +0000 (21:01 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 15 Mar 2018 21:05:12 +0000 (21:05 +0000)
Include both for sanity's sake.

dot/emacs-calc

index ad95840b9d5bd774031ca23742f624e239cc013b..017f00b6afd728e66c1a63c4a984817f6e0e4354 100644 (file)
@@ -82,12 +82,14 @@ constant bounds."
   (gig "GB" "Gigabyte")
   (GB "1024 * MB" "Gigabyte")
   (meg "MB" "Megabyte")
-  (MB "1024 * KB" "Megabyte")
-  (KB "1024 * byte" "Kilobyte")
+  (MB "1024 * kB" "Megabyte")
+  (KB "kB" "Kilobyte")
+  (kB "1024 * byte" "Kilobyte")
   (Tb "1024 * Gb" "Teraabit")
   (Gb "1024 * Mb" "Gigabit")
-  (Mb "1024 * Kb" "Megabit")
-  (Kb "1024 * bit" "Kilobit")
+  (Mb "1024 * kb" "Megabit")
+  (Kb "kb" "Kilobit")
+  (kb "1024 * bit" "Kilobit")
   (byte "octet" "Byte")
   (octet "8 * bit" "Octet")
   (bit nil "Bit")