aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-06-18 19:31:44 -0700
committerGlenn Morris2010-06-18 19:31:44 -0700
commit74739ffd738a28b406b1fa3153fff599ac06d57f (patch)
tree4ba687333d5f8c439e1bb683f333529a1cb7a868
parent4111f0c731623edc1978f861ed5f25614c3ae2a2 (diff)
downloademacs-74739ffd738a28b406b1fa3153fff599ac06d57f.tar.gz
emacs-74739ffd738a28b406b1fa3153fff599ac06d57f.zip
Close bug#6422.
* lisp/descr-text.el (describe-char-unicode-data): Insert separating space when needed.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/descr-text.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 02b389b77d4..3371fb45312 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12010-06-19 Glenn Morris <rgm@gnu.org> 12010-06-19 Glenn Morris <rgm@gnu.org>
2 2
3 * descr-text.el (describe-char-unicode-data): Insert separating
4 space when needed. (Bug#6422)
5
3 * progmodes/idlwave.el (idlwave-action-and-binding): 6 * progmodes/idlwave.el (idlwave-action-and-binding):
4 Fix typo in 2009-12-03 change. (Bug#6450) 7 Fix typo in 2009-12-03 change. (Bug#6450)
5 8
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'."
301 (lambda (arg) 301 (lambda (arg)
302 (string (string-to-number arg 16))) 302 (string (string-to-number arg 16)))
303 parts " ")) 303 parts " "))
304 (concat info parts)))) 304 (concat info (if info " ") parts))))
305 (list "Decimal digit value" 305 (list "Decimal digit value"
306 (nth 5 fields)) 306 (nth 5 fields))
307 (list "Digit value" 307 (list "Digit value"