diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-11-08 13:08:49 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-11-08 15:20:52 +0100 |
commit | 37f3ade8a9d5a94c13753c2dc3d1019ffa92f069 (patch) | |
tree | 1cd76048ba7071325a6e16d924964d39b7e19cee /gnu/packages | |
parent | 38b345006b15d815fa735bf5369457ed07e2ff47 (diff) | |
download | guix-37f3ade8a9d5a94c13753c2dc3d1019ffa92f069.tar.gz guix-37f3ade8a9d5a94c13753c2dc3d1019ffa92f069.zip |
gnu: emacs-expand-region: Update to 1.0.0.
* gnu/packages/emacs-xyz.scm (emacs-expand-region): Update to 1.0.0.
Change-Id: I04ebab9d22dc7b43590839fa467d05a6f7670c45
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 7946bf03f5..1f9efceff7 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -6703,20 +6703,18 @@ mode, which displays information about Elasticsearch clusters.") (license license:gpl3+))) (define-public emacs-expand-region - (let ((commit "c5c4362741deebb0985a8a29f9b8b0e25160764a") - (revision "1")) - (package + (package (name "emacs-expand-region") - (version (git-version "0.11.0" revision commit)) + (version "1.0.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/magnars/expand-region.el") - (commit commit))) + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "17h58v5mnggbrwrp61cwkqx8hzazkdqyz9p6s1hl9g2hys7zkb00")))) + (base32 "0mw1jlgdp17k56rq4g801z7y35h4infm9cy3mh8jw5wqqar5ifa6")))) (build-system emacs-build-system) (home-page "https://github.com/magnars/expand-region.el") (synopsis "Increase selected region by semantic units") @@ -6724,7 +6722,7 @@ mode, which displays information about Elasticsearch clusters.") "Expand region increases the selected region by semantic units. Just keep pressing the key until it selects what you want. There's also @code{er/contract-region} if you expand too far.") - (license license:gpl3+)))) + (license license:gpl3+))) (define-public emacs-explain-pause-mode (let ((commit "2356c8c3639cbeeb9751744dbe737267849b4b51") |