diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-17 19:45:20 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-05-17 19:45:20 +0200 |
commit | 6e61f9ec8a2c14699499f597edc6fdc7f4b1f0bd (patch) | |
tree | 04c2f8ce381a3d46cd342b1ab06c16df7503ddec /test/lisp/emacs-lisp/pp-resources | |
parent | 45ec56f5bd0832285a7b03c2ceaa5546ba59652d (diff) | |
download | emacs-6e61f9ec8a2c14699499f597edc6fdc7f4b1f0bd.tar.gz emacs-6e61f9ec8a2c14699499f597edc6fdc7f4b1f0bd.tar.bz2 emacs-6e61f9ec8a2c14699499f597edc6fdc7f4b1f0bd.zip |
Fix pp-emacs-lisp-code printing of cons cells
* lisp/emacs-lisp/pp.el (pp--insert-lisp): Fix printing of cons
cells (bug#55478).
Diffstat (limited to 'test/lisp/emacs-lisp/pp-resources')
-rw-r--r-- | test/lisp/emacs-lisp/pp-resources/code-formats.erts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/pp-resources/code-formats.erts b/test/lisp/emacs-lisp/pp-resources/code-formats.erts index 002a5cf1650..c3e3023cb19 100644 --- a/test/lisp/emacs-lisp/pp-resources/code-formats.erts +++ b/test/lisp/emacs-lisp/pp-resources/code-formats.erts @@ -128,3 +128,15 @@ Name: code-formats12 =-= (global-set-key (kbd "s-x") #'kill-region) =-=-= + +Name: code-formats13 + +=-= +'("a") +=-=-= + +Name: code-formats14 + +=-= +'("a" . "b") +=-=-= |