diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/international/mule-cmds.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 465bf57612b..622c0c777e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de> | ||
| 2 | |||
| 3 | * international/mule-cmds.el (set-locale-environment): Remove call | ||
| 4 | to set-selection-coding-system on Windows. | ||
| 5 | |||
| 1 | 2005-02-15 Jay Belanger <belanger@truman.edu> | 6 | 2005-02-15 Jay Belanger <belanger@truman.edu> |
| 2 | 7 | ||
| 3 | * calc/calc-alg.el: Add simplification rules for calcFunc-sec, | 8 | * calc/calc-alg.el: Add simplification rules for calcFunc-sec, |
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 2b3af4d7e50..2106585f8a7 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2421,13 +2421,13 @@ See also `locale-charset-language-names', `locale-language-names', | |||
| 2421 | (prefer-coding-system coding-system) | 2421 | (prefer-coding-system coding-system) |
| 2422 | (setq locale-coding-system coding-system)))) | 2422 | (setq locale-coding-system coding-system)))) |
| 2423 | 2423 | ||
| 2424 | ;; On Windows, override locale-coding-system, keyboard-coding-system, | 2424 | ;; On Windows, override locale-coding-system, |
| 2425 | ;; selection-coding-system with system codepage. | 2425 | ;; keyboard-coding-system with system codepage. Note: |
| 2426 | ;; selection-coding-system is already set in w32select.c. | ||
| 2426 | (when (boundp 'w32-ansi-code-page) | 2427 | (when (boundp 'w32-ansi-code-page) |
| 2427 | (let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page)))) | 2428 | (let ((code-page-coding (intern (format "cp%d" w32-ansi-code-page)))) |
| 2428 | (when (coding-system-p code-page-coding) | 2429 | (when (coding-system-p code-page-coding) |
| 2429 | (setq locale-coding-system code-page-coding) | 2430 | (setq locale-coding-system code-page-coding) |
| 2430 | (set-selection-coding-system code-page-coding) | ||
| 2431 | (set-keyboard-coding-system code-page-coding) | 2431 | (set-keyboard-coding-system code-page-coding) |
| 2432 | (set-terminal-coding-system code-page-coding)))) | 2432 | (set-terminal-coding-system code-page-coding)))) |
| 2433 | 2433 | ||