branch: externals/embark commit b4dc4d8665402a53fde6c3703fe7f6b4e0aee6ee Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@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))