Mercurial > hg > xemacs-beta
changeset 4618:69cd8e2d2a88
Merge, add a ChangeLog entry.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 15 Feb 2009 12:32:48 +0000 |
parents | ad2d2f4848f5 (current diff) 2d9ba8d925b2 (diff) |
children | 75e7ab37b6c8 |
files | lisp/ChangeLog lisp/descr-text.el |
diffstat | 2 files changed, 35 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Feb 13 15:44:05 2009 +0000 +++ b/lisp/ChangeLog Sun Feb 15 12:32:48 2009 +0000 @@ -1,3 +1,10 @@ +2009-02-02 Aidan Kehoe <kehoea@parhasard.net> + + * descr-text.el (describe-char-unicodedata-file): + Back out Stephen's change of 2009-01-01, 16c9098dd3d2; do a + Mercurial merge, add this ChangeLog entry. + See also http://mid.gmane.org/8763jbsyr7.fsf@xemacs.org . + 2009-02-02 Aidan Kehoe <kehoea@parhasard.net> * mule/latin.el (macintosh):
--- a/lisp/descr-text.el Fri Feb 13 15:44:05 2009 +0000 +++ b/lisp/descr-text.el Sun Feb 15 12:32:48 2009 +0000 @@ -209,18 +209,40 @@ (insert "There are text properties here:\n") (describe-property-list properties))))) -;; XEmacs change -(defcustom describe-char-unicodedata-file nil +(defcustom describe-char-unicodedata-file + ;; XEmacs change; initialise this by default, using Perl. + (let ((have-perl + (member-if + #'(lambda (path) + (file-exists-p (format "%s%cperl" path directory-sep-char))) + exec-path)) + installprivlib res) + (when have-perl + (setq installprivlib + (with-string-as-buffer-contents "" + (shell-command "perl -V:installprivlib" t) + ;; 1+ because buffer offsets start at one. + (delete-region 1 (1+ (length "installprivlib='"))) + ;; Delete the final newline, semicolon and quotation mark. + (delete-region (- (point-max) 3) (point-max)))) + (cond + ((file-exists-p + (setq res + (format "%s%cunicore%cUnicodeData.txt" + installprivlib directory-sep-char directory-sep-char)))) + ((file-exists-p + (setq res + (format "%s%cunicode%cUnicodeData.txt" + installprivlib directory-sep-char directory-sep-char))))) + res)) "Location of Unicode data file. This is the UnicodeData.txt file from the Unicode Consortium, used for diagnostics. If it is non-nil `describe-char' will print data looked up from it. This facility is mostly of use to people doing multilingual development. -This is a fairly large file, installed on many systems by Perl, in the -`unicore' subdirectory of the Perl library tree \(\"perl -V:installprivlib\" -will tell you where that is.) You can also get the current version from the -Unicode Consortium at the URL +This is a fairly large file, typically installed with Perl. +At the time of writing it is at the URL `http://www.unicode.org/Public/UNIDATA/UnicodeData.txt'. It is possible to build a DBM or Berkeley index cache for this file, so that