From 40d546724ba7e4b75599c46fa701074aa6ac1475 Mon Sep 17 00:00:00 2001 Message-Id: <40d546724ba7e4b75599c46fa701074aa6ac1475.1714634645.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 15 Mar 2018 21:01:51 +0000 Subject: [PATCH] dot/emacs-calc: Prefer lowercase `k' for kilobytes and kilobits. Organization: Straylight/Edgeware From: Mark Wooding Include both for sanity's sake. --- dot/emacs-calc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dot/emacs-calc b/dot/emacs-calc index ad95840..017f00b 100644 --- a/dot/emacs-calc +++ b/dot/emacs-calc @@ -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") -- [mdw]