emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/denote b25d6a9a08 3/4: Fix quote protection in doc stri


From: ELPA Syncer
Subject: [elpa] externals/denote b25d6a9a08 3/4: Fix quote protection in doc strings
Date: Sat, 23 Jul 2022 15:57:27 -0400 (EDT)

branch: externals/denote
commit b25d6a9a08892d44f8992f8ac27e05c75039de2c
Author: Kyle Meyer <kyle@kyleam.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Fix quote protection in doc strings
    
    A few doc strings put \\ in front of a single quote, but that doesn't
    protect the quote from being processed according to
    text-quoting-style.  Use \\= instead to ensure that the apostrophe is
    rendered as is.
---
 denote.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/denote.el b/denote.el
index f757d056ac..b7533a153c 100644
--- a/denote.el
+++ b/denote.el
@@ -809,7 +809,7 @@ here for clarity."
   "Create note while prompting for a file type.
 
 This is the equivalent to calling `denote' when `denote-prompts'
-is set to \\'(file-type title keywords)."
+is set to \\='(file-type title keywords)."
   (declare (interactive-only t))
   (interactive)
   (let ((denote-prompts '(file-type title keywords)))
@@ -891,7 +891,7 @@ The date can be in YEAR-MONTH-DAY notation like 2022-06-30 
or
 that plus the time: 2022-06-16 14:30
 
 This is the equivalent to calling `denote' when `denote-prompts'
-is set to \\'(date title keywords)."
+is set to \\='(date title keywords)."
   (declare (interactive-only t))
   (interactive)
   (let ((denote-prompts '(date title keywords)))
@@ -941,7 +941,7 @@ Available candidates include the value of the variable
 `denote-directory' and any subdirectory thereof.
 
 This is equivalent to calling `denote' when `denote-prompts' is set to
-\\'(subdirectory title keywords)."
+\\='(subdirectory title keywords)."
   (declare (interactive-only t))
   (interactive)
   (let ((denote-prompts '(subdirectory title keywords)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]