From: Lars Ingebrigtsen Date: Fri, 22 Apr 2022 13:17:15 +0000 (+0200) Subject: Fix map-into doc string example X-Git-Tag: emacs-29.0.90~1931^2~359 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd;p=emacs.git Fix map-into doc string example * lisp/emacs-lisp/map.el (map-into): Fix quote quoting in example. --- diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el index dea5b34991a..c53f253f87f 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el @@ -540,7 +540,7 @@ TYPE is a list whose car is `hash-table' and cdr a list of keyword-args forwarded to `make-hash-table'. Example: - (map-into '((1 . 3)) '(hash-table :test eql))" + (map-into \\='((1 . 3)) \\='(hash-table :test eql))" (map--into-hash map (cdr type))) (defun map--make-pcase-bindings (args)