diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-12 23:19:57 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-12 23:19:57 -0500 |
| commit | 91d82ed866916030dff21245b5bc34df3be509da (patch) | |
| tree | 9cc9d6617cf4196d4f3793322b38c6f7d3e58e1c /modules | |
| parent | fac95427620ab33d7be4cd707fb4333f5aba6442 (diff) | |
| download | dotemacs-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.el | 2 |
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) |
