From 454bcf4bbd187106a3fe2d7b7451cf20d7fac806 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 28 Jun 2025 11:15:58 +0200 Subject: [PATCH] Try to omit the stack element number when killing in calc Not (yet?) working for `M-w`, though. --- init.el | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/init.el b/init.el index 7fba7ed..916ea50 100644 --- a/init.el +++ b/init.el @@ -197,13 +197,13 @@ (use-package calc ;; https://florian.adamsky.it/2016/03/31/emacs-calc-for-programmers-and-cs.html - :defines (math-additional-units - math-units-table) - :init (setq math-additional-units - '((bit nil "Bit") - (byte "8 * bit" "Byte") - (bps "bit / s" "Bit per second")) - math-units-table nil)) + :defines (math-additional-units ; from calc-units.el + math-units-table) ; from calc-units.el + :init (setopt math-additional-units '((bit nil "Bit") + (byte "8 * bit" "Byte") + (bps "bit / s" "Bit per second")) + math-units-table nil + calc-kill-line-numbering nil)) (use-package calender :init (setq calendar-date-style 'iso