aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-26 01:38:12 -0500
committerCraig Jennings <c@cjennings.net>2025-10-26 01:38:12 -0500
commit4ed034b3485bbc9fe8eae404463304feabf9688c (patch)
tree22bb612eaa1d05b7c7f7f800c445341978074abb
parent665b87352ec23e4adee7c23bfac3964958f60384 (diff)
downloaddotemacs-4ed034b3485bbc9fe8eae404463304feabf9688c.tar.gz
dotemacs-4ed034b3485bbc9fe8eae404463304feabf9688c.zip
fix:custom-line-paragraph:missing forward declarations
-rw-r--r--modules/custom-line-paragraph.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/custom-line-paragraph.el b/modules/custom-line-paragraph.el
index e66b024dc..17b6cdf48 100644
--- a/modules/custom-line-paragraph.el
+++ b/modules/custom-line-paragraph.el
@@ -18,6 +18,9 @@
;;; Code:
+(eval-when-compile (defvar cj/custom-keymap)) ;; defined in keybindings.el
+(declare-function er/mark-paragraph "expand-region") ;; for cj/join-paragraph
+
(defun cj/join-line-or-region ()
"Join lines in the active region or join the current line with the previous one."
(interactive)