diff options
| author | Lars Ingebrigtsen | 2022-04-22 15:17:15 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-04-22 15:17:15 +0200 |
| commit | 16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd (patch) | |
| tree | b8e1716b31e9baf280f67bfa2feaf9208650bb92 | |
| parent | 93f87a3190f9efebe0e2db0cd5cfe5aeac6b64c3 (diff) | |
| download | emacs-16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd.tar.gz emacs-16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd.zip | |
Fix map-into doc string example
* lisp/emacs-lisp/map.el (map-into): Fix quote quoting in example.
| -rw-r--r-- | lisp/emacs-lisp/map.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
| 540 | keyword-args forwarded to `make-hash-table'. | 540 | keyword-args forwarded to `make-hash-table'. |
| 541 | 541 | ||
| 542 | Example: | 542 | Example: |
| 543 | (map-into '((1 . 3)) '(hash-table :test eql))" | 543 | (map-into \\='((1 . 3)) \\='(hash-table :test eql))" |
| 544 | (map--into-hash map (cdr type))) | 544 | (map--into-hash map (cdr type))) |
| 545 | 545 | ||
| 546 | (defun map--make-pcase-bindings (args) | 546 | (defun map--make-pcase-bindings (args) |