Mercurial > emacs
changeset 98778:0f8ccfd21a74
* w32-fns.el (w32-check-shell-configuration): Doc fix.
(w32-add-charset-info): Fix typo in docstring.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 16 Oct 2008 15:28:29 +0000 |
parents | 63f2a735a59d |
children | fab6a6dd78f1 |
files | lisp/ChangeLog lisp/w32-fns.el |
diffstat | 2 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Thu Oct 16 12:57:28 2008 +0000 +++ b/lisp/ChangeLog Thu Oct 16 15:28:29 2008 +0000 @@ -1,3 +1,8 @@ +2008-10-16 Juanma Barranquero <lekktu@gmail.com> + + * w32-fns.el (w32-check-shell-configuration): Doc fix. + (w32-add-charset-info): Fix typo in docstring. + 2008-10-16 Teodor Zlatanov <tzz@lifelogs.com> * international/mule-conf.el: Removed `utf8' and `UTF8' aliases
--- a/lisp/w32-fns.el Thu Oct 16 12:57:28 2008 +0000 +++ b/lisp/w32-fns.el Thu Oct 16 15:28:29 2008 +0000 @@ -112,7 +112,7 @@ (defvar w32-quote-process-args) ;; defined in w32proc.c (defun w32-check-shell-configuration () - "Check the configuration of shell variables on Windows NT/9X. + "Check the configuration of shell variables on Windows. This function is invoked after loading the init files and processing the command line arguments. It issues a warning if the user or site has configured the shell with inappropriate settings." @@ -351,15 +351,14 @@ "Function to add character sets to display with Windows fonts. Creates entries in `w32-charset-info-alist'. XLFD-CHARSET is a string which will appear in the XLFD font name to -identify the character set. WINDOWS-CHARSET is a symbol identifying +identify the character set. WINDOWS-CHARSET is a symbol identifying the Windows character set this maps to. For the list of possible values, see the documentation for `w32-charset-info-alist'. CODEPAGE can be a numeric codepage that Windows uses to display the character set, t for Unicode output with no codepage translation or nil for 8 bit output with no translation." (add-to-list 'w32-charset-info-alist - (cons xlfd-charset (cons windows-charset codepage))) - ) + (cons xlfd-charset (cons windows-charset codepage)))) ;; The last charset we add becomes the "preferred" charset for the return ;; value from w32-select-font etc, so list the most important charsets last.