diff options
| author | Kenichi Handa | 1997-08-10 04:07:03 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-10 04:07:03 +0000 |
| commit | f6eb8ace4f205a3d6cb8d9a638b6e540a57e56bf (patch) | |
| tree | 678df4c0d8b612ec980d07618eb1ced9ea3dd8b1 | |
| parent | 5cfcd8bc91b66448bbde3b0213b95129c8f83918 (diff) | |
| download | emacs-f6eb8ace4f205a3d6cb8d9a638b6e540a57e56bf.tar.gz emacs-f6eb8ace4f205a3d6cb8d9a638b6e540a57e56bf.zip | |
(iso-safe): New coding system.
| -rw-r--r-- | lisp/international/mule-conf.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index 87b792a3de1..c5fb7aa32f3 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -278,6 +278,16 @@ | |||
| 278 | '((ascii t) nil t nil | 278 | '((ascii t) nil t nil |
| 279 | nil ascii-eol ascii-cntl nil nil single-shift)) | 279 | nil ascii-eol ascii-cntl nil nil single-shift)) |
| 280 | 280 | ||
| 281 | (make-coding-system | ||
| 282 | 'iso-safe 2 ?- | ||
| 283 | "Convert all characters but ASCII to `?'." | ||
| 284 | '(ascii nil nil nil | ||
| 285 | nil ascii-eol ascii-cntl nil nil nil nil nil nil nil nil t)) | ||
| 286 | |||
| 287 | ;; Use iso-safe for terminal output if some other coding system is | ||
| 288 | ;; specified explicitely. | ||
| 289 | (set-safe-terminal-coding-system-internal 'iso-safe) | ||
| 290 | |||
| 281 | ;; The other coding-systems are defined in each language specific | 291 | ;; The other coding-systems are defined in each language specific |
| 282 | ;; section of languages.el. | 292 | ;; section of languages.el. |
| 283 | 293 | ||