From 76a464c7cfe396f460619afeaa500013a9b3228c Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 20 Apr 2021 17:59:09 -0500 Subject: [PATCH] Fix some dumbness --- init.el | 1 - lisp/acdw-org.el | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/init.el b/init.el index 6627a82..3a00478 100644 --- a/init.el +++ b/init.el @@ -545,7 +545,6 @@ (:global "C-=" er/expand-region)) (setup (:straight crux) - (advice-add 'kill-line :override #'crux-kill-and-join-forward) (:global "M-`" crux-other-window-or-switch-buffer "C-o" crux-smart-open-line "M-o" crux-smart-open-line-above diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index dfabcc7..13a1b88 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el @@ -170,7 +170,7 @@ appropriate. In tables, insert a new row or end the table." nil 'tree))) -(defun acdw-org/fix-blanks-in-buffer () +(defun acdw-org/fix-blank-lines-in-buffer () (when (eq major-mode 'org-mode) (let ((current-prefix-arg 4)) (call-interactively #'acdw-org/fix-blank-lines))))