* international/mule-diag.el (print-list): Fix 2008-12-03 change.
This commit is contained in:
parent
60898913e1
commit
ecbe9da5b7
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2009-01-14 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* international/mule-diag.el (print-list): Fix 2008-12-03 change.
|
||||
|
||||
2009-01-14 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* frame.el (special-display-popup-frame): Rewrite doc-string and
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
(defun print-list (&rest args)
|
||||
"Print all arguments with single space separator in one line."
|
||||
(princ (mapconcat #'identity args " "))
|
||||
(princ (mapconcat (lambda (arg) (prin1-to-string arg t)) args " "))
|
||||
(princ "\n"))
|
||||
|
||||
;;; CHARSET
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue