Mercurial > emacs
comparison etc/NEWS @ 49668:f118fc83f5a5
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 10 Feb 2003 08:24:29 +0000 |
parents | b4b0014862b1 |
children | f863aaa8296d |
comparison
equal
deleted
inserted
replaced
49667:cbec1327e2f1 | 49668:f118fc83f5a5 |
---|---|
1165 ** New package benchmark.el contains simple support for convenient | 1165 ** New package benchmark.el contains simple support for convenient |
1166 timing measurements of code (including the garbage collection component). | 1166 timing measurements of code (including the garbage collection component). |
1167 | 1167 |
1168 | 1168 |
1169 * Lisp Changes in Emacs 21.4 | 1169 * Lisp Changes in Emacs 21.4 |
1170 | |
1171 ** New function `set-process-filter-multibyte' sets the multibyteness | |
1172 of a string given to a process's filter. | |
1173 | |
1174 ** New function `process-filter-multibyte-p' returns t if | |
1175 a string given to a process's filter is multibyte. | |
1176 | |
1177 ** A filter function of a process is called with a multibyte string if | |
1178 the filter's multibyteness is t. That multibyteness is decided by the | |
1179 value of `default-enable-multibyte-characters' when the process is | |
1180 created and can be changed later by `set-process-filter-multibyte'. | |
1181 | |
1182 ** If a process's coding system is raw-text or no-conversion and its | |
1183 buffer is multibyte, the output of the process is at first converted | |
1184 to multibyte by `string-to-multibyte' then inserted in the buffer. | |
1185 Previously, it was converted to multibyte by `string-as-multibyte', | |
1186 which was not compatible with the behaviour of file reading. | |
1170 | 1187 |
1171 ** New function `string-to-multibyte' converts a unibyte string to a | 1188 ** New function `string-to-multibyte' converts a unibyte string to a |
1172 multibyte string with the same individual character codes. | 1189 multibyte string with the same individual character codes. |
1173 | 1190 |
1174 ** New variables `gc-elapsed' and `gcs-done' provide extra information | 1191 ** New variables `gc-elapsed' and `gcs-done' provide extra information |