From 692779efbcfe2b418d65bf19fbb3cf3b0f66d4b1 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Mon, 17 Apr 2023 10:50:40 -0400 Subject: [PATCH] tweak kmn method signature to use dashes instead of slashes --- common/generic_functions.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/generic_functions.el b/common/generic_functions.el index 6ca9677..b6f51aa 100644 --- a/common/generic_functions.el +++ b/common/generic_functions.el @@ -208,6 +208,6 @@ position between last non-whitespace and `end-of-line'." ) ; subtract 3 days from a date string -(defun kmn/date/string/minus-three-days (date-string) +(defun kmn/date-string-minus-three-days (date-string) (kmn/date-string-days-math date-string -3) )