gnu: emacs-paredit: Update to 25.

* gnu/packages/emacs-xyz.scm (emacs-paredit): Update to 25.
[description]: Remove out of place emphasis markers.
This commit is contained in:
Nicolas Goaziou 2022-11-26 11:05:54 +01:00
parent afa5fa8d5b
commit bd6de843e6
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -809,36 +809,31 @@ Emacs package archive}.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-paredit (define-public emacs-paredit
;; The last tagged release is from 2014; use the latest commit, which (package
;; includes many fixes such as honoring the 'fill-paragraph-function' (name "emacs-paredit")
;; variable. (version "25")
(let ((commit "d0b1a2f42fb47efc8392763d6487fd027e3a2955") (source (origin
(revision "1")) (method git-fetch)
(package (uri (git-reference
(name "emacs-paredit") (url "https://mumble.net/~campbell/git/paredit.git")
(version (git-version "24" revision commit)) (commit (string-append "v" version))))
(source (origin (file-name (git-file-name name version))
(method git-fetch) (sha256
(uri (git-reference (base32
(url "https://mumble.net/~campbell/git/paredit.git") "1gc6lnk5xqxzl9s2m99hfi07wp4zfhh1k64c1bdrjfalv55nl998"))))
(commit commit))) (build-system emacs-build-system)
(file-name (git-file-name name version)) (home-page "http://mumble.net/~campbell/emacs/paredit/")
(sha256 (synopsis "Emacs minor mode for editing parentheses")
(base32 (description
"1x91xxvwb3r3h61ff1kknlaakxm1a40r7zg2lck9j52yiza4f191")))) "ParEdit (paredit.el) is a minor mode for performing structured editing
(build-system emacs-build-system)
(home-page "http://mumble.net/~campbell/emacs/paredit/")
(synopsis "Emacs minor mode for editing parentheses")
(description
"ParEdit (paredit.el) is a minor mode for performing structured editing
of S-expression data. The typical example of this would be Lisp or Scheme of S-expression data. The typical example of this would be Lisp or Scheme
source code. source code.
ParEdit helps **keep parentheses balanced** and adds many keys for moving ParEdit helps keep parentheses balanced and adds many keys for moving
S-expressions and moving around in S-expressions. Its behavior can be jarring S-expressions and moving around in S-expressions. Its behavior can be jarring
for those who may want transient periods of unbalanced parentheses, such as for those who may want transient periods of unbalanced parentheses, such as
when typing parentheses directly or commenting out code line by line.") when typing parentheses directly or commenting out code line by line.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public emacs-puni (define-public emacs-puni
;; No tagged release upstream ;; No tagged release upstream