Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ecbe9da5
Commit
ecbe9da5
authored
Jan 14, 2009
by
Juanma Barranquero
Browse files
* international/mule-diag.el (print-list): Fix 2008-12-03 change.
parent
60898913
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/international/mule-diag.el
lisp/international/mule-diag.el
+1
-1
No files found.
lisp/ChangeLog
View file @
ecbe9da5
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
...
...
lisp/international/mule-diag.el
View file @
ecbe9da5
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment