From 74739ffd738a28b406b1fa3153fff599ac06d57f Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Fri, 18 Jun 2010 19:31:44 -0700 Subject: [PATCH] Close bug#6422. * lisp/descr-text.el (describe-char-unicode-data): Insert separating space when needed. --- lisp/ChangeLog | 3 +++ lisp/descr-text.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 02b389b77d4..3371fb45312 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-06-19 Glenn Morris + * descr-text.el (describe-char-unicode-data): Insert separating + space when needed. (Bug#6422) + * progmodes/idlwave.el (idlwave-action-and-binding): Fix typo in 2009-12-03 change. (Bug#6450) diff --git a/lisp/descr-text.el b/lisp/descr-text.el index 218f2a51d7f..250d87a6ae6 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -301,7 +301,7 @@ This function is semi-obsolete. Use `get-char-code-property'." (lambda (arg) (string (string-to-number arg 16))) parts " ")) - (concat info parts)))) + (concat info (if info " ") parts)))) (list "Decimal digit value" (nth 5 fields)) (list "Digit value" -- 2.11.4.GIT