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

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

[elpa] externals/dash 76606f9077 2/2: Merge pull request #398 from tarsi


From: ELPA Syncer
Subject: [elpa] externals/dash 76606f9077 2/2: Merge pull request #398 from tarsiiformes/quote-quote
Date: Fri, 27 May 2022 18:57:26 -0400 (EDT)

branch: externals/dash
commit 76606f90774c5349f7adac20c33e6d37a1939a1f
Merge: 759682332a e90a654b58
Author: Matus Goljer <matus.goljer@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #398 from tarsiiformes/quote-quote
    
    Quote certain single quotes in docstrings
---
 dash.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dash.el b/dash.el
index eccba3a649..08f4697902 100644
--- a/dash.el
+++ b/dash.el
@@ -2402,7 +2402,7 @@ patterns be optionally left out and derived from the key 
name in
 the following fashion:
 
 - a key :foo is converted into `foo' pattern,
-- a key 'bar is converted into `bar' pattern,
+- a key \\='bar is converted into `bar' pattern,
 - a key \"baz\" is converted into `baz' pattern.
 
 That is, the entire value under the key is bound to the derived
@@ -2416,10 +2416,10 @@ invalid spec fails with an error.
 Thus the patterns are normalized as follows:
 
    ;; derive all the missing patterns
-   (&plist :foo 'bar \"baz\") => (&plist :foo foo 'bar bar \"baz\" baz)
+   (&plist :foo \\='bar \"baz\") => (&plist :foo foo \\='bar bar \"baz\" baz)
 
    ;; we can specify some but not others
-   (&plist :foo 'bar explicit-bar) => (&plist :foo foo 'bar explicit-bar)
+   (&plist :foo \\='bar explicit-bar) => (&plist :foo foo \\='bar explicit-bar)
 
    ;; nothing happens, we store :foo in x
    (&plist :foo x) => (&plist :foo x)



reply via email to

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