aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-12 23:19:57 -0500
committerCraig Jennings <c@cjennings.net>2025-10-12 23:19:57 -0500
commit91d82ed866916030dff21245b5bc34df3be509da (patch)
tree9cc9d6617cf4196d4f3793322b38c6f7d3e58e1c /modules
parentfac95427620ab33d7be4cd707fb4333f5aba6442 (diff)
downloaddotemacs-91d82ed866916030dff21245b5bc34df3be509da.tar.gz
dotemacs-91d82ed866916030dff21245b5bc34df3be509da.zip
fix: call cj/join-line-or-region with 0 (correct number) args
Diffstat (limited to 'modules')
-rw-r--r--modules/custom-line-paragraph.el2
1 files changed, 1 insertions, 1 deletions
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)