emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-bug-tracker] bug#6422: closed ([describe-char PATCH 1/2] describe


From: GNU bug Tracking System
Subject: [Emacs-bug-tracker] bug#6422: closed ([describe-char PATCH 1/2] describe-char: add missing space in Unicode "Decomposition" line)
Date: Sat, 19 Jun 2010 02:33:01 +0000

Your message dated Fri, 18 Jun 2010 22:32:52 -0400
with message-id <address@hidden>
and subject line Re: bug#6422: [describe-char PATCH 1/2] describe-char: add 
missing space in Unicode "Decomposition" line
has caused the GNU bug report #6422,
regarding [describe-char PATCH 1/2] describe-char: add missing space in Unicode 
"Decomposition" line
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
6422: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6422
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [describe-char PATCH 1/2] describe-char: add missing space in Unicode "Decomposition" line Date: Mon, 14 Jun 2010 14:23:43 +0200 User-agent: StGit/0.15-114-gf9037
If there is an "info" field, make sure to add a space after it.
---
 lisp/descr-text.el |   28 ++++++++++++++--------------
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/lisp/descr-text.el b/lisp/descr-text.el
index 36ee08d..51f7a77 100644
--- a/lisp/descr-text.el
+++ b/lisp/descr-text.el
@@ -288,20 +288,20 @@ This function is semi-obsolete.  Use 
`get-char-code-property'."
                       (or (char-code-property-description
                            'bidi-class (intern val))
                           val)))
-              (list
-               "Decomposition"
-               (if (nth 4 fields)
-                   (let* ((parts (split-string (nth 4 fields)))
-                          (info (car parts)))
-                     (if (string-match "\\`<\\(.+\\)>\\'" info)
-                         (setq info (match-string 1 info))
-                       (setq info nil))
-                     (if info (setq parts (cdr parts)))
-                     (setq parts (mapconcat
-                                  (lambda (arg)
-                                    (string (string-to-number arg 16)))
-                                  parts " "))
-                     (concat info parts))))
+              (list "Decomposition"
+                     (let ((field (nth 4 fields)))
+                       (when field
+                         (let* ((parts (split-string field))
+                                (info  (car parts)))
+                           (if (string-match "\\`<\\(.+\\)>\\'" info)
+                               (setq info  (match-string 1 info)
+                                     parts (cdr parts))
+                             (setq info nil))
+                           (concat info (when info " ")
+                                   (mapconcat
+                                    (lambda (arg)
+                                      (string (string-to-number arg 16)))
+                                    parts " "))))))
               (list "Decimal digit value"
                     (nth 5 fields))
               (list "Digit value"




--- End Message ---
--- Begin Message --- Subject: Re: bug#6422: [describe-char PATCH 1/2] describe-char: add missing space in Unicode "Decomposition" line Date: Fri, 18 Jun 2010 22:32:52 -0400 User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)
Gustav HÃ¥llberg wrote:

> If there is an "info" field, make sure to add a space after it.


I believe the minimum version of this change is just


--- lisp/descr-text.el  2010-06-03 15:34:35 +0000
+++ lisp/descr-text.el  2010-06-18 19:48:07 +0000
@@ -301,7 +301,7 @@
                                   (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"


so that's what I installed.

I would have found an example very helpful, eg

emacs -Q --eval \
  '(setq describe-char-unicodedata-file "admin/unidata/UnicodeData.txt")'

M-x ucs-insert RET 0132 RET
C-u C-x =


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]