Mercurial > hg > xemacs-beta
comparison lisp/code-init.el @ 2297:13a418960a88
[xemacs-hg @ 2004-09-22 02:05:42 by stephent]
various doc patches <87isa7awrh.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Wed, 22 Sep 2004 02:06:52 +0000 |
parents | 0f60caa73962 |
children | 14f65fa1e69e |
comparison
equal
deleted
inserted
replaced
2296:a58ea4d0d0cd | 2297:13a418960a88 |
---|---|
22 ;;; Commentary: | 22 ;;; Commentary: |
23 | 23 |
24 ;; Placed in a separate file so it can be loaded after the various | 24 ;; Placed in a separate file so it can be loaded after the various |
25 ;; coding systems have been created, because we'll be using them at | 25 ;; coding systems have been created, because we'll be using them at |
26 ;; load time. | 26 ;; load time. |
27 | |
28 ;; #### Issues (this discussion probably belongs elsewhere) | |
29 ;; 1. "Big" characters are unrepresentable. Should give error, warning, | |
30 ;; not just substitute "~". | |
31 ;; 2. 21.4 compatibility? | |
32 ;; 3. make-char: non-mule barfs on non-iso8859-1. | |
27 | 33 |
28 ;;; Code: | 34 ;;; Code: |
29 | 35 |
30 (defcustom eol-detection-enabled-p (or (featurep 'mule) | 36 (defcustom eol-detection-enabled-p (or (featurep 'mule) |
31 (memq system-type '(windows-nt | 37 (memq system-type '(windows-nt |
76 ;; environment is initialized (set-language-environment-coding-systems). | 82 ;; environment is initialized (set-language-environment-coding-systems). |
77 (defvar coding-system-variable-default-value-table | 83 (defvar coding-system-variable-default-value-table |
78 '((buffer-file-coding-system-for-read | 84 '((buffer-file-coding-system-for-read |
79 binary raw-text undecided raw-text undecided) | 85 binary raw-text undecided raw-text undecided) |
80 (default-buffer-file-coding-system | 86 (default-buffer-file-coding-system |
87 ;; #### iso-2022-8 with no eol specified? can that be OK? | |
81 binary binary iso-2022-8 raw-text-dos mswindows-multibyte-dos) | 88 binary binary iso-2022-8 raw-text-dos mswindows-multibyte-dos) |
82 (native | 89 (native |
83 binary binary binary raw-text-dos mswindows-multibyte-system-default-dos) | 90 binary binary binary raw-text-dos mswindows-multibyte-system-default-dos) |
84 (keyboard | 91 (keyboard |
85 binary raw-text undecided-unix raw-text undecided-unix) | 92 binary raw-text undecided-unix raw-text undecided-unix) |