mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 08:44:32 +02:00
24 lines
902 B
Diff
24 lines
902 B
Diff
Patch-Source: https://github.com/oantolin/embark/commit/9ab3cf7cb7e9cc2110212874abf4b0a6ae65668e
|
|
--
|
|
From 9ab3cf7cb7e9cc2110212874abf4b0a6ae65668e Mon Sep 17 00:00:00 2001
|
|
From: Jonas Bernoulli <jonas@bernoul.li>
|
|
Date: Fri, 7 Jun 2024 22:15:59 +0200
|
|
Subject: [PATCH] Fix quoting in docstring
|
|
|
|
---
|
|
embark.el | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/embark.el b/embark.el
|
|
index 660d932..d00968d 100644
|
|
--- a/embark.el
|
|
+++ b/embark.el
|
|
@@ -871,7 +871,7 @@ property respectively."
|
|
(defmacro embark-define-thingatpt-target (thing &rest modes)
|
|
"Define a target finder for THING using the thingatpt library.
|
|
The function defined is named embark-target-NAME-at-point and it
|
|
-uses (thing-at-point 'THING) to find its targets.
|
|
+uses (thing-at-point \\='THING) to find its targets.
|
|
|
|
If any MODES are given, the target finder only applies to buffers
|
|
in one of those major modes."
|