From 193837f93fec2bae59ea95a07cf5e457f6c31fcb Mon Sep 17 00:00:00 2001 From: jason Date: Thu, 6 Jul 2017 13:41:13 -0600 Subject: Fix a bug with maybe-kill-word the space wasn't included with maybe kill word, so it was stopping at new lines --- local-lib/zzq-funcs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local-lib/zzq-funcs.el b/local-lib/zzq-funcs.el index c1bb4a9..400171d 100644 --- a/local-lib/zzq-funcs.el +++ b/local-lib/zzq-funcs.el @@ -46,7 +46,7 @@ bind this to C-delete and M-d" (interactive "p") (if (looking-at "[ \t\r\n]") (let ((start (point))) - (re-search-forward "[\t\r\n]+" nil) + (re-search-forward "[ \t\r\n]+" nil) (delete-region (point) start)) (kill-word arg))) -- cgit v1.2.1