diff options
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/international/mule-conf.el | 5 |
3 files changed, 13 insertions, 2 deletions
| @@ -1118,6 +1118,8 @@ functions and variables (formerly used for Tamil script). | |||
| 1118 | 1118 | ||
| 1119 | * Lisp Changes in Emacs 23.1 | 1119 | * Lisp Changes in Emacs 23.1 |
| 1120 | 1120 | ||
| 1121 | ** New coding system alias `emacs-internal'. | ||
| 1122 | |||
| 1121 | +++ | 1123 | +++ |
| 1122 | ** New primitives `list-system-processes' and `system-process-attributes' | 1124 | ** New primitives `list-system-processes' and `system-process-attributes' |
| 1123 | let Lisp programs access the processes that are running on the local | 1125 | let Lisp programs access the processes that are running on the local |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7703e16b73e..537c2cdc6d3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-10-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * international/mule-conf.el (emacs-internal): New coding system alias. | ||
| 4 | |||
| 1 | 2008-10-18 Juri Linkov <juri@jurta.org> | 5 | 2008-10-18 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * info.el (Info-find-node-2): Put initial point below the header line | 7 | * info.el (Info-find-node-2): Put initial point below the header line |
| @@ -3083,8 +3087,8 @@ | |||
| 3083 | frame-specific X resource settings. Set faces using a list of | 3087 | frame-specific X resource settings. Set faces using a list of |
| 3084 | frame parameters explicitly passed to the calling | 3088 | frame parameters explicitly passed to the calling |
| 3085 | function (e.g. make-frame). | 3089 | function (e.g. make-frame). |
| 3086 | (x-create-frame-with-faces, tty-create-frame-with-faces): Supply | 3090 | (x-create-frame-with-faces, tty-create-frame-with-faces): |
| 3087 | explicit frame parameter list to face-set-after-frame-default. | 3091 | Supply explicit frame parameter list to face-set-after-frame-default. |
| 3088 | 3092 | ||
| 3089 | 2008-07-08 Eduard Wiebe <usenet@pusto.de> (tiny change) | 3093 | 2008-07-08 Eduard Wiebe <usenet@pusto.de> (tiny change) |
| 3090 | 3094 | ||
diff --git a/lisp/international/mule-conf.el b/lisp/international/mule-conf.el index cb9cf974fea..0a4e491ddda 100644 --- a/lisp/international/mule-conf.el +++ b/lisp/international/mule-conf.el | |||
| @@ -1281,6 +1281,11 @@ is treated as a character." | |||
| 1281 | :mnemonic ?U | 1281 | :mnemonic ?U |
| 1282 | :charset-list '(emacs)) | 1282 | :charset-list '(emacs)) |
| 1283 | 1283 | ||
| 1284 | ;; The encoding used internally. This encoding is meant to be able to save | ||
| 1285 | ;; any multibyte buffer without losing information. It can change between | ||
| 1286 | ;; Emacs releases, tho, so should only be used for internal files. | ||
| 1287 | (define-coding-system-alias 'emacs-internal 'utf-8-emacs-unix) | ||
| 1288 | |||
| 1284 | (define-coding-system 'utf-16le | 1289 | (define-coding-system 'utf-16le |
| 1285 | "UTF-16LE (little endian, no signature (BOM))." | 1290 | "UTF-16LE (little endian, no signature (BOM))." |
| 1286 | :coding-type 'utf-16 | 1291 | :coding-type 'utf-16 |