From 91d82ed866916030dff21245b5bc34df3be509da Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 12 Oct 2025 23:19:57 -0500 Subject: fix: call cj/join-line-or-region with 0 (correct number) args --- modules/custom-line-paragraph.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/custom-line-paragraph.el b/modules/custom-line-paragraph.el index 334aa8d22..db2101fa6 100644 --- a/modules/custom-line-paragraph.el +++ b/modules/custom-line-paragraph.el @@ -28,7 +28,7 @@ "Join all lines in the current paragraph using `cj/join-line-or-region'." (interactive) (er/mark-paragraph) ;; from package expand region - (cj/join-line-or-region (region-beginning)(region-end)) + (cj/join-line-or-region) (forward-line)) (defun cj/duplicate-line-or-region (&optional comment) -- cgit v1.2.3