From: Lars Ingebrigtsen Date: Thu, 21 Apr 2022 14:23:02 +0000 (+0200) Subject: Fix indentation in copy-region-as-kill X-Git-Tag: emacs-29.0.90~1931^2~372 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=11f66e16ac909f3e820795e449d0848b8ec7c7e9;p=emacs.git Fix indentation in copy-region-as-kill * lisp/simple.el (copy-region-as-kill): Fix indendation. --- 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)