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

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

[nongnu] elpa/xah-fly-keys 25388e9719 6/7: Merge branch 'master' into re


From: ELPA Syncer
Subject: [nongnu] elpa/xah-fly-keys 25388e9719 6/7: Merge branch 'master' into refactor
Date: Thu, 26 May 2022 03:59:02 -0400 (EDT)

branch: elpa/xah-fly-keys
commit 25388e9719d9ede51a2554e71d3840d3f418b2c1
Merge: 4b077c5049 5c3481a779
Author: Xah Lee <xah@xahlee.org>
Commit: GitHub <noreply@github.com>

    Merge branch 'master' into refactor
---
 xah-fly-keys.el | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index ca5d375964..a61afba9b4 100644
--- a/xah-fly-keys.el
+++ b/xah-fly-keys.el
@@ -1131,9 +1131,9 @@ Version: 2020-11-22 2021-08-13"
 This command does the inverse of `fill-paragraph'.
 
 URL `http://xahlee.info/emacs/emacs/emacs_unfill-paragraph.html'
-Version: 2016-07-13"
+Version: 2010-05-12 2022-05-20"
   (interactive)
-  (let ((fill-column most-positive-fixnum))
+  (let ((fill-column 90002000))
     (fill-paragraph)))
 
 (defun xah-unfill-region (Begin End)
@@ -1141,9 +1141,9 @@ Version: 2016-07-13"
 This command does the inverse of `fill-region'.
 
 URL `http://xahlee.info/emacs/emacs/emacs_unfill-paragraph.html'
-Version: 2016-07-13"
+Version: 2010-05-12 2022-05-20"
   (interactive "r")
-  (let ((fill-column most-positive-fixnum))
+  (let ((fill-column 90002000))
     (fill-region Begin End)))
 
 (defun xah-change-newline-chars-to-one (Begin End)
@@ -2127,12 +2127,13 @@ Version: 2020-11-24 2021-07-11 2021-12-21 2022-03-26"
 Typically, if buffer name starts with *, it is not considered a user buffer.
 This function is used by buffer switching command and close buffer command, so 
that next buffer shown is a user buffer.
 You can override this function to get your idea of “user buffer”.
-Version: 2016-06-18"
+Version: 2022-05-19"
   (interactive)
   (cond
    ((string-equal "*" (substring (buffer-name) 0 1)) nil)
    ((string-equal major-mode "dired-mode") nil)
    ((string-equal major-mode "eww-mode") nil)
+   ((string-equal major-mode "help-mode") nil)
    (t t)))
 
 (defun xah-next-user-buffer ()



reply via email to

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