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

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

[nongnu] elpa/xah-fly-keys a3e7d6fb8b 3/7: xah-unfill-paragraph and xah-


From: ELPA Syncer
Subject: [nongnu] elpa/xah-fly-keys a3e7d6fb8b 3/7: xah-unfill-paragraph and xah-unfill-region. revert to my magic number 90002000 of years ago. not use most-positive-fixnum.
Date: Thu, 26 May 2022 03:59:01 -0400 (EDT)

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

    xah-unfill-paragraph and xah-unfill-region. revert to my magic number 
90002000 of years ago. not use most-positive-fixnum.
---
 xah-fly-keys.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index 307e3b00a2..fe382ebe58 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.9.20220516184525
+;; Version: 17.10.20220526001219
 ;; Created: 10 Sep 2013
 ;; Package-Requires: ((emacs "24.1"))
 ;; Keywords: convenience, emulations, vim, ergoemacs
@@ -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)



reply via email to

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