diff options
author | Glenn Morris <rgm@gnu.org> | 2010-06-18 19:31:44 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-06-18 19:31:44 -0700 |
commit | 74739ffd738a28b406b1fa3153fff599ac06d57f (patch) | |
tree | 4ba687333d5f8c439e1bb683f333529a1cb7a868 /lisp/descr-text.el | |
parent | 4111f0c731623edc1978f861ed5f25614c3ae2a2 (diff) | |
download | emacs-74739ffd738a28b406b1fa3153fff599ac06d57f.tar.gz |
Close bug#6422.
* lisp/descr-text.el (describe-char-unicode-data): Insert separating
space when needed.
Diffstat (limited to 'lisp/descr-text.el')
-rw-r--r-- | lisp/descr-text.el | 2 |
1 files changed, 1 insertions, 1 deletions
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" |