aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2000-05-28 10:50:24 +0000
committerEli Zaretskii2000-05-28 10:50:24 +0000
commita205e32a7298df36c5c0895453633136d18ebf73 (patch)
treed8f031a1cdd8e92adaf70fe92669622b960452e1
parentcd550f91934793cb274c50371c7bc4cbd55959ac (diff)
downloademacs-a205e32a7298df36c5c0895453633136d18ebf73.tar.gz
emacs-a205e32a7298df36c5c0895453633136d18ebf73.zip
(cp-coding-system-for-codepage-1): Add
eight-bit-graphic and eight-bit-control to safe charsets for cpNNN coding systems.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/international/codepage.el2
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9298db21fc3..6c2c7315ba4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * international/codepage.el (cp-coding-system-for-codepage-1): Add
4 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
5 coding systems.
6
12000-05-26 Dave Love <fx@gnu.org> 72000-05-26 Dave Love <fx@gnu.org>
2 8
3 * disp-table.el (standard-display-underline): Don't use 9 * disp-table.el (standard-display-underline): Don't use
diff --git a/lisp/international/codepage.el b/lisp/international/codepage.el
index ef6350eb6fd..2752322975c 100644
--- a/lisp/international/codepage.el
+++ b/lisp/international/codepage.el
@@ -119,7 +119,7 @@ variety is actually just an alias for the -unix variety)."
119 (concat "8-bit encoding of " (symbol-name iso-name) 119 (concat "8-bit encoding of " (symbol-name iso-name)
120 " characters using IBM codepage " coding-name) 120 " characters using IBM codepage " coding-name)
121 (cons ccl-decoder-unix ccl-encoder-unix) 121 (cons ccl-decoder-unix ccl-encoder-unix)
122 `((safe-charsets ascii ,iso-name) 122 `((safe-charsets ascii eight-bit-control eight-bit-graphic ,iso-name)
123 (valid-codes (0 . 255)) 123 (valid-codes (0 . 255))
124 (charset-origin-alist ,(list iso-name (symbol-name coding) encoder)))) 124 (charset-origin-alist ,(list iso-name (symbol-name coding) encoder))))
125 ;;; Make coding systems CODING-unix, CODING-dos, CODING-mac. 125 ;;; Make coding systems CODING-unix, CODING-dos, CODING-mac.