comparison lisp/ChangeLog @ 4994:76af7fc13e81

Automatic merge
author Ben Wing <ben@xemacs.org>
date Sat, 06 Feb 2010 04:27:47 -0600
parents c0934cef10c6 8f0cf4fd3d2c
children b46c89ccbed3
comparison
equal deleted inserted replaced
4993:c0934cef10c6 4994:76af7fc13e81
1 2010-02-06 Ben Wing <ben@xemacs.org> 1 2010-02-06 Ben Wing <ben@xemacs.org>
2 2
3 * unicode.el: 3 * unicode.el:
4 * unicode.el (for): 4 * unicode.el (for):
5 Convert file to utf-8. 5 Convert file to utf-8.
6
7 2010-02-06 Ben Wing <ben@xemacs.org>
8
9 * code-init.el:
10 * code-init.el (set-eol-detection):
11 * code-init.el (coding-system-current-system-configuration):
12 * code-init.el (coding-system-default-configuration-table): New.
13 * code-init.el (no-mule-no-eol-detection):
14 * code-init.el (define-coding-system-default-configuration): New.
15 * code-init.el (coding-system-variable-default-value-table): Removed.
16 * code-init.el (no-mule-eol-detection):
17 * code-init.el (coding-system-default-configuration-list): Removed.
18 * code-init.el (coding-system-default-variable-list):
19 * code-init.el (get-coding-system-variable):
20 * code-init.el (set-coding-system-variable):
21 * code-init.el (coding-system-variable-default-value):
22 * code-init.el (reset-coding-categories-to-default):
23 Significant clean-up, add Cygwin-UTF-8 support.
24
25 1. Shorten the names of the coding system variables to follow
26 what used to be considered the "abbreviations":
27
28 default-process-coding-system-read -> process-read
29 default-process-coding-system-write -> process-write
30 buffer-file-coding-system-for-read -> bfcs-for-read
31 default-buffer-file-coding-system -> default-bfcs
32 no-conversion-coding-system-mapping -> no-conv-cs
33
34 2. Instead of listing all the defaults in a big, strangely organized
35 table, use a new function
36 `define-coding-system-default-configuration' to define a
37 particular configuration. This uses a hash table stored in
38 `coding-system-default-configuration-table'. Rewrite
39 `coding-system-variable-default-value' appropriately.
40
41 3. Rename configurations to eliminate `unix' from the name:
42
43 unix-no-mule-no-eol-detection -> no-mule-no-eol-detection
44 unix-no-mule-eol-detection -> no-mule-eol-detection
45 unix-mule -> mule
46
47 This is because these are really for all systems but Windows,
48 not just Unix.
49
50 4. Add configuration `cygwin-utf-8', enabled when (featurep
51 'cygwin-use-utf-8). Uses `utf-8' for all defaults except for
52 `bfcs-for-read', which is `undecided'.
6 53
7 2010-01-28 Ben Wing <ben@xemacs.org> 54 2010-01-28 Ben Wing <ben@xemacs.org>
8 55
9 * lisp-mode.el: Finish documenting `lisp-indent-specform', 56 * lisp-mode.el: Finish documenting `lisp-indent-specform',
10 on Mike Sperber's request. 57 on Mike Sperber's request.