guix_mirror_bot pushed a commit to branch emacs-team in repository guix. commit 9d8deccdde6f3313ba306f5f5cbec7cbc5bb8cd9 Author: Nicolas Graves <ngra...@ngraves.fr> AuthorDate: Sun May 18 10:16:37 2025 +0200
gnu: emacs-undo-propose-el: Rename package to emacs-undo-propose. * gnu/packages/emacs-xyz.scm (emacs-undo-propose-el): Define in terms of 'deprecated-package'. (emacs-undo-propose): New variable, formerly known as "emacs-undo-propose-el". Signed-off-by: Ian Eure <i...@retrospec.tv> --- gnu/packages/emacs-xyz.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ee6fb13286..7a0d317b43 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -35289,11 +35289,11 @@ comfort of Magit and the rest of Emacs.") packages with a consistent way to use them.") (license license:gpl3+)))) -(define-public emacs-undo-propose-el +(define-public emacs-undo-propose (let ((commit "f80baee566807d733fbacbab08a897bcd62579c3") (revision "3")) (package - (name "emacs-undo-propose-el") + (name "emacs-undo-propose") (version (git-version "3.0.0" revision commit)) (source (origin @@ -35316,6 +35316,9 @@ subsequent committal of a chain of @code{undo} commands as a single edit in the @code{undo} history.") (license license:gpl3+)))) +(define-deprecated/public emacs-undo-propose-el emacs-undo-propose + (deprecated-package "emacs-undo-propose-el" emacs-undo-propose)) + (define-public emacs-elisp-docstring-mode (let ((commit "f512e509dd690f65133e55563ebbfd2dede5034f") (version "0.0.1")