Fix pp-emacs-lisp-code printing of symbols
* lisp/emacs-lisp/pp.el (pp--insert-lisp): Print symbols readably (bug#69168).
This commit is contained in:
parent
ed43ad5b56
commit
9a2ce74c37
1 changed files with 2 additions and 0 deletions
|
@ -458,6 +458,8 @@ the bounds of a region containing Lisp code to pretty-print."
|
|||
(string
|
||||
(let ((print-escape-newlines t))
|
||||
(prin1 sexp (current-buffer))))
|
||||
(symbol
|
||||
(prin1 sexp (current-buffer)))
|
||||
(otherwise (princ sexp (current-buffer)))))
|
||||
|
||||
(defun pp--format-vector (sexp)
|
||||
|
|
Loading…
Add table
Reference in a new issue