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

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

[nongnu] elpa/xah-fly-keys c6f59da2c9 3/4: minor refactor emacs version


From: ELPA Syncer
Subject: [nongnu] elpa/xah-fly-keys c6f59da2c9 3/4: minor refactor emacs version checking code. thanks to Stefan Monnier
Date: Mon, 16 May 2022 21:58:47 -0400 (EDT)

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

    minor refactor emacs version checking code. thanks to Stefan Monnier
---
 xah-fly-keys.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/xah-fly-keys.el b/xah-fly-keys.el
index 829c31b186..64fe9f7465 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.8.20220516181442
+;; Version: 17.8.20220516182155
 ;; Created: 10 Sep 2013
 ;; Package-Requires: ((emacs "24.1"))
 ;; Keywords: convenience, emulations, vim, ergoemacs
@@ -2302,7 +2302,7 @@ Version: 2019-02-26 2022-04-07"
   (let (($xBookmark (completing-read "Open bookmark:" (mapcar (lambda ($x) 
(car $x)) bookmark-alist))))
     (find-file (bookmark-get-filename $xBookmark))))
 
-(if (version< emacs-version "28.1")
+(if (<= emacs-major-version 28)
     nil
   (defalias 'xah-open-file-fast 'bookmark-jump))
 
@@ -4325,7 +4325,7 @@ minor modes loaded later may override bindings in this 
map.")
    ("t" . xref-find-definitions)
    ("n" . xref-pop-marker-stack)))
 
-(when (version< emacs-version "28.1")
+(when (<= emacs-major-version 28)
   (defalias 'execute-extended-command-for-buffer 'execute-extended-command))
 
 (xah-fly--define-keys



reply via email to

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