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 9bedf9f826 gnu: Add emacs-do-at-point.
9bedf9f826 is described below
commit 9bedf9f826539b615ca8454d11fe1452f2fd6356
Author: jgart <[email protected]>
AuthorDate: Sat Jan 31 13:02:09 2026 -0500
gnu: Add emacs-do-at-point.
* gnu/packages/emacs-xyz.scm (emacs-do-at-point): New variable.
Change-Id: Iec8d7fdf602aa99dcff8dca60695c37971bb9705
Signed-off-by: jgart <[email protected]>
---
gnu/packages/emacs-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bbd3c12a8f..4ac5ad2f47 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -32588,6 +32588,25 @@ datastructures as needed, both for method parameters
and return values, making
using XML-RPC methods fairly transparent to the Lisp code.")
(license license:gpl3+)))
+(define-public emacs-do-at-point
+ (package
+ (name "emacs-do-at-point")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://elpa.gnu.org/packages/do-at-point-"
+ version ".tar"))
+ (sha256
+ (base32 "0kirhg78ra6311hx1f1kpqhpxjxxg61gnzsh9j6id10f92h6m5gz"))))
+ (build-system emacs-build-system)
+ (home-page "https://elpa.gnu.org/packages/do-at-point.html")
+ (synopsis "Generic context-sensitive action dispatcher")
+ (description "This package provides a generalized
+@code{find-file-at-point}, both in the sense that it can understand more than
+just files, and do more than just open a file.")
+ (license license:gpl3+)))
+
(define-public emacs-xpm
(package
(name "emacs-xpm")