# HG changeset patch # User Aidan Kehoe # Date 1218363356 -7200 # Node ID c95c06ee1e9daec9cd268f3603b1059d9068d656 # Parent ea66743ff20155e3a4e479120d7bd68bfe12ac9f Correct a test failure now the XEmacs-specific Arabic charsets are gone. etc/ChangeLog addition: 2008-08-10 Aidan Kehoe * HELLO: Add a coding cookie, now the UTF-8 sequences prevent the file being recognised as ISO-2022-7 automatically. tests/ChangeLog addition: 2008-08-10 Aidan Kehoe * automated/mule-tests.el (featurep): Update the list of character sets in etc/HELLO to reflect that we've deleted the XEmacs-specific Arabic character sets. diff -r ea66743ff201 -r c95c06ee1e9d etc/ChangeLog --- a/etc/ChangeLog Sun Aug 10 12:03:10 2008 +0200 +++ b/etc/ChangeLog Sun Aug 10 12:15:56 2008 +0200 @@ -1,3 +1,8 @@ +2008-08-10 Aidan Kehoe + + * HELLO: Add a coding cookie, now the UTF-8 sequences prevent the + file being recognised as ISO-2022-7 automatically. + 2008-08-05 Aidan Kehoe * HELLO: Encode the Arabic using UTF-8 sequences, not ISO-8859-6. diff -r ea66743ff201 -r c95c06ee1e9d etc/HELLO --- a/etc/HELLO Sun Aug 10 12:03:10 2008 +0200 +++ b/etc/HELLO Sun Aug 10 12:15:56 2008 +0200 @@ -1,3 +1,5 @@ +-*- coding: iso-2022-7 -*- + You need many fonts to read all. Please correct this incomplete list and add more! diff -r ea66743ff201 -r c95c06ee1e9d tests/ChangeLog --- a/tests/ChangeLog Sun Aug 10 12:03:10 2008 +0200 +++ b/tests/ChangeLog Sun Aug 10 12:15:56 2008 +0200 @@ -1,3 +1,9 @@ +2008-08-10 Aidan Kehoe + + * automated/mule-tests.el (featurep): Update the list of character + sets in etc/HELLO to reflect that we've deleted the + XEmacs-specific Arabic character sets. + 2008-05-21 Aidan Kehoe * automated/mule-tests.el (featurep): diff -r ea66743ff201 -r c95c06ee1e9d tests/automated/mule-tests.el --- a/tests/automated/mule-tests.el Sun Aug 10 12:03:10 2008 +0200 +++ b/tests/automated/mule-tests.el Sun Aug 10 12:15:56 2008 +0200 @@ -527,20 +527,20 @@ ;; irrelevant. (sort (charsets-in-region (point-min) (point-max)) #'string<) - '(arabic-1-column arabic-2-column ascii chinese-big5-1 - chinese-gb2312 cyrillic-iso8859-5 ethiopic greek-iso8859-7 - hebrew-iso8859-8 japanese-jisx0208 japanese-jisx0212 - katakana-jisx0201 korean-ksc5601 latin-iso8859-1 - latin-iso8859-2 thai-xtis vietnamese-viscii-lower))) + '(ascii chinese-big5-1 chinese-gb2312 cyrillic-iso8859-5 + ethiopic greek-iso8859-7 hebrew-iso8859-8 japanese-jisx0208 + japanese-jisx0212 jit-ucs-charset-0 katakana-jisx0201 + korean-ksc5601 latin-iso8859-1 latin-iso8859-2 thai-xtis + vietnamese-viscii-lower))) (Assert (equal (sort (charsets-in-string (buffer-substring (point-min) (point-max))) #'string<) - '(arabic-1-column arabic-2-column ascii chinese-big5-1 - chinese-gb2312 cyrillic-iso8859-5 ethiopic greek-iso8859-7 - hebrew-iso8859-8 japanese-jisx0208 japanese-jisx0212 - katakana-jisx0201 korean-ksc5601 latin-iso8859-1 - latin-iso8859-2 thai-xtis vietnamese-viscii-lower)))) + '(ascii chinese-big5-1 chinese-gb2312 cyrillic-iso8859-5 + ethiopic greek-iso8859-7 hebrew-iso8859-8 japanese-jisx0208 + japanese-jisx0212 jit-ucs-charset-0 katakana-jisx0201 + korean-ksc5601 latin-iso8859-1 latin-iso8859-2 thai-xtis + vietnamese-viscii-lower)))) ;;--------------------------------------------------------------- ;; Language environments, and whether the specified values are sane.