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

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

[elpa] externals/embark b4dc4d8665 1/2: Replace or quote certain single


From: ELPA Syncer
Subject: [elpa] externals/embark b4dc4d8665 1/2: Replace or quote certain single quotes in docstrings
Date: Fri, 27 May 2022 18:57:42 -0400 (EDT)

branch: externals/embark
commit b4dc4d8665402a53fde6c3703fe7f6b4e0aee6ee
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Replace or quote certain single quotes in docstrings
    
    The byte-compiler recently got more fussy about quotes.
---
 embark.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/embark.el b/embark.el
index ecf59176be..07c0249be6 100644
--- a/embark.el
+++ b/embark.el
@@ -308,7 +308,7 @@ In addition to target types, you can also use as keys in 
this alist,
 pairs of a target type and a command name. Such a pair indicates that
 the override only applies if the target was obtained from minibuffer
 completion from that command. For example adding an
-entry (cons (cons 'file 'delete-file) 'find-file) to this alist would
+entry (cons (cons \\='file \\='delete-file) \\='find-file) to this alist would
 indicate that for files at the prompt of the `delete-file' command,
 `find-file' should be used as the default action."
   :type '(alist :key-type (choice (symbol :tag "Type")
@@ -1096,7 +1096,7 @@ UPDATE is the indicator update function."
   "Return an appropriate name for CMD.
 If CMD is a symbol, use its symbol name; for lambdas, use the
 first line of the documentation string; otherwise use the word
-'unnamed'."
+\"unnamed\"."
   (concat ; fresh copy, so we can freely add text properties
    (cond
     ((stringp (car-safe cmd)) (car cmd))



reply via email to

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