From 11f66e16ac909f3e820795e449d0848b8ec7c7e9 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Thu, 21 Apr 2022 16:23:02 +0200 Subject: [PATCH] Fix indentation in copy-region-as-kill * lisp/simple.el (copy-region-as-kill): Fix indendation. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 7e964c9d1d5..323d51dd2d3 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -5457,7 +5457,7 @@ This command's old key binding has been given to `kill-ring-save'." (let ((str (if region (funcall region-extract-function nil) (filter-buffer-substring beg end)))) - (if (eq last-command 'kill-region) + (if (eq last-command 'kill-region) (kill-append str (< end beg)) (kill-new str))) (setq deactivate-mark t) -- 2.39.5