diff options
| author | Craig Jennings <c@cjennings.net> | 2025-10-26 01:38:12 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-10-26 01:38:12 -0500 |
| commit | 4ed034b3485bbc9fe8eae404463304feabf9688c (patch) | |
| tree | 22bb612eaa1d05b7c7f7f800c445341978074abb /modules | |
| parent | 665b87352ec23e4adee7c23bfac3964958f60384 (diff) | |
| download | dotemacs-4ed034b3485bbc9fe8eae404463304feabf9688c.tar.gz dotemacs-4ed034b3485bbc9fe8eae404463304feabf9688c.zip | |
fix:custom-line-paragraph:missing forward declarations
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/custom-line-paragraph.el | 3 |
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) |
