This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 33ee29bc87 gnu: Add emacs-rtfm-mode.
33ee29bc87 is described below
commit 33ee29bc87ea5a7fe8c52114c92409dfc987dd43
Author: NoƩ Lopez <[email protected]>
AuthorDate: Wed Feb 4 22:27:21 2026 +0100
gnu: Add emacs-rtfm-mode.
* gnu/package/emacs-xyz.scm (emacs-rtfm-mode): New variable.
Merges guix/guix!6136
Change-Id: Ieb22734828c57aec6405ff37b2fda0486df821c7
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index c54f61764c..1c9cddda83 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -16227,6 +16227,29 @@ line program.")
requests library that uses the url library.")
(license license:gpl2+))))
+(define-public emacs-rtfm-mode
+ (package
+ (name "emacs-rtfm-mode")
+ (version "0.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/lilyp/emacs-rtfm-mode.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0da5wxj88davv47zj53mp2i6g742j53ry1nr81jclij3anx0k2al"))))
+ (build-system emacs-build-system)
+ (arguments (list #:tests? #f)) ;no tests
+ (home-page "https://codeberg.org/lilyp/emacs-rtfm-mode")
+ (synopsis "Address gender discrimination in documentation")
+ (description "This package provides a minor mode for reading the feminist
+manuals, inspired by a browser extension of the same name. It replaces
+occurences of gendered language with gender-neutral one and provides
+means of counting their occurences.")
+ (license license:gpl3+)))
+
(define-public emacs-ruby-electric
(let ((revision "0")
(commit "c53376da891713e0c49f01aad2ff64d4fbb0b812"))