comparison lisp/ChangeLog @ 4468:a78d697ccd2c

Import and extend GNU's descr-text.el, supporting prefix argument for C-x = 2008-05-25 Aidan Kehoe <kehoea@parhasard.net> * descr-text.el: New. Taken from GNU's GPLV2 version of 2007-02-14, with modifications for XEmacs support and extensions for Unihan.txt support and db/dbm caches. * simple.el (what-cursor-position): Support an optional prefix argument, as does GNU, calling #'describe-char to giving more detail on the character at point, notably from UnicodeData and (in our case, optionally) Unihan.txt. * syntax.el (syntax-after): Make this available for the sake of #'describe-char. * mule/mule-cmds.el (iso-2022-control-alist): Make this available, for the sake of #'encoded-string-description and #'describe-char. * mule/mule-cmds.el (encoded-string-description): Make this available, for the sake of #'describe-char. * unicode.el (unicode-error-default-translation-table): Make this a char table of type generic, not of type char. Makes it possible to have the relevant logic in #'describe-char reasonably clear; also, and this is undocumented, makes it much easier to implement #'frob-unicode-errors-region. I should document this, and revise #'frob-unicode-errors-region.
author Aidan Kehoe <kehoea@parhasard.net>
date Sun, 25 May 2008 21:11:35 +0200
parents 5c651a4e8ed3
children 0204391fc17c 017044266245
comparison
equal deleted inserted replaced
4467:23ef20edf6ba 4468:a78d697ccd2c
1 2008-05-25 Aidan Kehoe <kehoea@parhasard.net>
2
3 * descr-text.el: New.
4 Taken from GNU's GPLV2 version of 2007-02-14, with modifications
5 for XEmacs support and extensions for Unihan.txt support and
6 db/dbm caches.
7 * simple.el (what-cursor-position):
8 Support an optional prefix argument, as does GNU, calling
9 #'describe-char to giving more detail on the character at point,
10 notably from UnicodeData and (in our case, optionally) Unihan.txt.
11 * syntax.el (syntax-after):
12 Make this available for the sake of #'describe-char.
13 * mule/mule-cmds.el (iso-2022-control-alist):
14 Make this available, for the sake of #'encoded-string-description
15 and #'describe-char.
16 * mule/mule-cmds.el (encoded-string-description):
17 Make this available, for the sake of #'describe-char.
18 * unicode.el (unicode-error-default-translation-table):
19 Make this a char table of type generic, not of type char. Makes it
20 possible to have the relevant logic in #'describe-char reasonably
21 clear; also, and this is undocumented, makes it much easier to
22 implement #'frob-unicode-errors-region. I should document this,
23 and revise #'frob-unicode-errors-region.
24
1 2008-05-14 Stephen J. Turnbull <stephen@xemacs.org> 25 2008-05-14 Stephen J. Turnbull <stephen@xemacs.org>
2 26
3 * subr.el (add-to-list): Fix Aidan's last commit. 27 * subr.el (add-to-list): Fix Aidan's last commit.
4 28
5 2008-05-14 Aidan Kehoe <kehoea@parhasard.net> 29 2008-05-14 Aidan Kehoe <kehoea@parhasard.net>