[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 4b76028d04 1/3: docs: Replace all unicode quo
From: |
Jonas Bernoulli |
Subject: |
[elpa] externals/transient 4b76028d04 1/3: docs: Replace all unicode quotes in texi export |
Date: |
Tue, 5 Dec 2023 13:54:20 -0500 (EST) |
branch: externals/transient
commit 4b76028d04feabfe92a01c96f49edad098e6b98d
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>
docs: Replace all unicode quotes in texi export
---
docs/Makefile | 2 +-
docs/transient.texi | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/Makefile b/docs/Makefile
index 79cf26c0e0..89104158ad 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -16,7 +16,7 @@ ORG_EVAL += --funcall org-texinfo-export-to-texinfo
texi:
@printf "Generating $(PKG).texi\n"
@$(EMACS) $(ORG_ARGS) $(PKG).org $(ORG_EVAL)
- @sed -i -e 's/“/``/' -e "s/”/''/" -e '$$a\' $(PKG).texi
+ @sed -i -e 's/“/``/g' -e "s/”/''/g" -e '$$a\' $(PKG).texi
@rm -f $(PKG).texi~
%.info: %.texi
diff --git a/docs/transient.texi b/docs/transient.texi
index 2d8a2236cb..51edc5ae67 100644
--- a/docs/transient.texi
+++ b/docs/transient.texi
@@ -850,7 +850,7 @@ The following functions share a few arguments:
@var{SUFFIX} is a transient infix or suffix specification in the same form
as expected by @code{transient-define-prefix}. Note that an infix is a
special kind of suffix. Depending on context ``suffixes'' means
-``suffixes (including infixes)'' or “non-infix suffixes”. Here it
+``suffixes (including infixes)'' or ``non-infix suffixes''. Here it
means the former. See @ref{Suffix Specifications}.
@var{SUFFIX} may also be a group in the same form as expected by
@@ -1221,7 +1221,7 @@ The same form is also used when later binding additional
commands
using functions such as @code{transient-insert-suffix}, see @ref{Modifying
Existing Transients}.
Note that an infix is a special kind of suffix. Depending on context
-``suffixes'' means “suffixes (including infixes)” or “non-infix
+``suffixes'' means ``suffixes (including infixes)'' or ``non-infix
suffixes''. Here it means the former.
Suffix specifications have this form:
@@ -1314,7 +1314,7 @@ argument supported by the constructor of that class. See
@ref{Suffix Slots}.
@cindex defining infix commands
Note that an infix is a special kind of suffix. Depending on context
-``suffixes'' means “suffixes (including infixes)” or “non-infix
+``suffixes'' means ``suffixes (including infixes)'' or ``non-infix
suffixes''.
@defmac transient-define-suffix name arglist [docstring] [keyword value]...
body...
@@ -1518,7 +1518,7 @@ sub-sections. They are called by
@code{transient--pre-command}, a function
on @code{pre-command-hook}, and the value that they return determines whether
the transient is exited. To do so the value of one of the constants
@code{transient--exit} or @code{transient--stay} is used (that way we don't
have to
-remember if @code{t} means ``exit'' or “stay”).
+remember if @code{t} means ``exit'' or ``stay'').
Additionally, these functions may change the value of @code{this-command}
(which explains why they have to be called using @code{pre-command-hook}),