comparison lisp/mule/arabic.el @ 4604:e0a8715fdb1f

Support new IGNORE-INVALID-SEQUENCESP argument, #'query-coding-region. lisp/ChangeLog addition: 2009-02-07 Aidan Kehoe <kehoea@parhasard.net> * coding.el (query-coding-clear-highlights): Rename the BUFFER argument to BUFFER-OR-STRING, describe it as possibly being a string in its documentation. (default-query-coding-region): Add a new IGNORE-INVALID-SEQUENCESP argument, document that this function does not support it. Bind case-fold-search to nil, we don't want this to influence what the function thinks is encodable or not. (query-coding-region): Add a new IGNORE-INVALID-SEQUENCESP argument, document what it does; reflect this new argument in the associated compiler macro. (query-coding-string): Add a new IGNORE-INVALID-SEQUENCESP argument, document what it does. Support the HIGHLIGHT argument correctly. * unicode.el (unicode-query-coding-region): Add a new IGNORE-INVALID-SEQUENCESP argument, document what it does, implement this. Document a potential problem. Use #'query-coding-clear-highlights instead of reimplementing it ourselves. Remove some debugging messages. * mule/arabic.el (iso-8859-6): * mule/cyrillic.el (iso-8859-5): * mule/greek.el (iso-8859-7): * mule/hebrew.el (iso-8859-8): * mule/latin.el (iso-8859-2): * mule/latin.el (iso-8859-3): * mule/latin.el (iso-8859-4): * mule/latin.el (iso-8859-14): * mule/latin.el (iso-8859-15): * mule/latin.el (iso-8859-16): * mule/latin.el (iso-8859-9): * mule/latin.el (windows-1252): * mule/mule-coding.el (iso-8859-1): Avoid the assumption that characters not given an explicit mapping in these coding systems map to the ISO 8859-1 characters corresponding to the octets on disk; this makes it much more reasonable to implement the IGNORE-INVALID-SEQUENCESP argument to query-coding-region. * mule/mule-cmds.el (set-language-info): Correct the docstring. * mule/mule-cmds.el (finish-set-language-environment): Treat invalid Unicode sequences produced from invalid-sequence-coding-system and corresponding to control characters the same as control characters in redisplay. * mule/mule-cmds.el: Document that encode-coding-char is available in coding.el * mule/mule-coding.el (make-8-bit-generate-helper): Change to return the both the encode-program generated and the relevant non-ASCII charset; update the docstring to reflect this. * mule/mule-coding.el (make-8-bit-generate-encode-program-and-skip-chars-strings): Rename this function; have it return skip-chars-strings as well as the encode program. Have these skip-chars-strings use ranges for charsets, where possible. * mule/mule-coding.el (make-8-bit-create-decode-encode-tables): Revise this to allow people to specify explicitly characters that should be undefined (= corresponding to keys in unicode-error-default-translation-table), and treating unspecified octets above #x7f as undefined by default. * mule/mule-coding.el (8-bit-fixed-query-coding-region): Add a new IGNORE-INVALID-SEQUENCESP argument, implement support for it using the 8-bit-fixed-invalid-sequences-skip-chars coding system property; remove some debugging messages. * mule/mule-coding.el (make-8-bit-coding-system): This function is dumped, autoloading it makes no sense. Document what happens when characters above #x7f are not specified, implement this. * mule/vietnamese.el: Correct spelling. tests/ChangeLog addition: 2009-02-07 Aidan Kehoe <kehoea@parhasard.net> * automated/query-coding-tests.el: Add FAILING-CASE arguments to the Assert calls, making #'q-c-debug mostly unnecessary. Remove #'q-c-debug. Add new tests that use the IGNORE-INVALID-SEQUENCESP argument to #'query-coding-region; rework the existing ones to respect it.
author Aidan Kehoe <kehoea@parhasard.net>
date Sat, 07 Feb 2009 17:13:37 +0000
parents d402d7b18bd8
children 257b468bf2ca
comparison
equal deleted inserted replaced
4603:202cb69c4d87 4604:e0a8715fdb1f
31 ;; See iso-with-esc.el for commentary on the ISO standard Arabic character 31 ;; See iso-with-esc.el for commentary on the ISO standard Arabic character
32 ;; set. 32 ;; set.
33 33
34 (make-8-bit-coding-system 34 (make-8-bit-coding-system
35 'iso-8859-6 35 'iso-8859-6
36 '((#xA0 ?\u00A0) ;; NO-BREAK SPACE 36 '((#x80 ?\u0080) ;; <control>
37 (#x81 ?\u0081) ;; <control>
38 (#x82 ?\u0082) ;; <control>
39 (#x83 ?\u0083) ;; <control>
40 (#x84 ?\u0084) ;; <control>
41 (#x85 ?\u0085) ;; <control>
42 (#x86 ?\u0086) ;; <control>
43 (#x87 ?\u0087) ;; <control>
44 (#x88 ?\u0088) ;; <control>
45 (#x89 ?\u0089) ;; <control>
46 (#x8A ?\u008A) ;; <control>
47 (#x8B ?\u008B) ;; <control>
48 (#x8C ?\u008C) ;; <control>
49 (#x8D ?\u008D) ;; <control>
50 (#x8E ?\u008E) ;; <control>
51 (#x8F ?\u008F) ;; <control>
52 (#x90 ?\u0090) ;; <control>
53 (#x91 ?\u0091) ;; <control>
54 (#x92 ?\u0092) ;; <control>
55 (#x93 ?\u0093) ;; <control>
56 (#x94 ?\u0094) ;; <control>
57 (#x95 ?\u0095) ;; <control>
58 (#x96 ?\u0096) ;; <control>
59 (#x97 ?\u0097) ;; <control>
60 (#x98 ?\u0098) ;; <control>
61 (#x99 ?\u0099) ;; <control>
62 (#x9A ?\u009A) ;; <control>
63 (#x9B ?\u009B) ;; <control>
64 (#x9C ?\u009C) ;; <control>
65 (#x9D ?\u009D) ;; <control>
66 (#x9E ?\u009E) ;; <control>
67 (#x9F ?\u009F) ;; <control>
68 (#xA0 ?\u00A0) ;; NO-BREAK SPACE
37 (#xA4 ?\u00A4) ;; CURRENCY SIGN 69 (#xA4 ?\u00A4) ;; CURRENCY SIGN
38 (#xAC ?\u060C) ;; ARABIC COMMA 70 (#xAC ?\u060C) ;; ARABIC COMMA
39 (#xAD ?\u00AD) ;; SOFT HYPHEN 71 (#xAD ?\u00AD) ;; SOFT HYPHEN
40 (#xBB ?\u061B) ;; ARABIC SEMICOLON 72 (#xBB ?\u061B) ;; ARABIC SEMICOLON
41 (#xBF ?\u061F) ;; ARABIC QUESTION MARK 73 (#xBF ?\u061F) ;; ARABIC QUESTION MARK