emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/xah-fly-keys 49857c3413: xah-clean-whitespace now report t


From: ELPA Syncer
Subject: [nongnu] elpa/xah-fly-keys 49857c3413: xah-clean-whitespace now report that it's been called
Date: Sat, 6 Aug 2022 22:59:13 -0400 (EDT)

branch: elpa/xah-fly-keys
commit 49857c341388dd58dcee4962226599510715f278
Author: Xah Lee <xah@xahlee.org>
Commit: Xah Lee <xah@xahlee.org>

    xah-clean-whitespace now report that it's been called
---
 xah-fly-keys.el | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index e9f7b00845..a74e007870 100644
--- a/xah-fly-keys.el
+++ b/xah-fly-keys.el
@@ -4,7 +4,7 @@
 
 ;; Author: Xah Lee ( http://xahlee.info/ )
 ;; Maintainer: Xah Lee <xah@xahlee.org>
-;; Version: 17.18.20220804202952
+;; Version: 17.19.20220806194323
 ;; Created: 10 Sep 2013
 ;; Package-Requires: ((emacs "24.1"))
 ;; Keywords: convenience, emulations, vim, ergoemacs
@@ -2536,7 +2536,7 @@ Only space and tab is considered whitespace here.
 Works on whole buffer or selection, respects `narrow-to-region'.
 
 URL `http://xahlee.info/emacs/emacs/elisp_compact_empty_lines.html'
-Version: 2017-09-22 2021-08-27"
+Version: 2017-09-22 2021-08-27 2022-08-06"
   (interactive)
   (let ($begin $end)
     (if (region-active-p)
@@ -2550,7 +2550,8 @@ Version: 2017-09-22 2021-08-27"
         (goto-char (point-min))
         (while (re-search-forward "\n\n\n+" nil 1) (replace-match "\n\n"))
         (goto-char (point-max))
-        (while (eq (char-before) ? ) (delete-char -1))))))
+        (while (eq (char-before) 32) (delete-char -1)))))
+  (message "%s done" real-this-command))
 
 (defun xah-make-backup ()
   "Make a backup copy of current file or dired marked files.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]