diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog index 0b029ef00..8f0d84ad9 100644 --- a/winsup/doc/ChangeLog +++ b/winsup/doc/ChangeLog @@ -1,3 +1,7 @@ +2010-03-17 Corinna Vinschen + + * faq-using.xml (faq.using.unicode): Remove old examples. + 2010-03-12 Corinna Vinschen * effectively.sgml (using-shortcuts): Match chapter with reality. diff --git a/winsup/doc/faq-using.xml b/winsup/doc/faq-using.xml index ab792a5df..d8fbcf382 100644 --- a/winsup/doc/faq-using.xml +++ b/winsup/doc/faq-using.xml @@ -364,31 +364,6 @@ section Internati Cygwin uses UTF-8 by default. To use a different character set, you need to set the LC_ALL, LC_CTYPE or LANG environment variables. - -To type international characters (£äö) in -bash, check if the following settings are available in -your bash, and if not, add them to your -~/.inputrc file and restart bash: - - - set meta-flag on - set convert-meta off - set output-meta on - set input-meta on - - -These are options to the readline library, which -you can read about in the bash(1) and -readline(3) man pages. Other tools that do not use -readline for display, such as less -and ls, might require additional settings for doublebyte -or multibyte charsets, which could be put -in your ~/.bashrc, for instance: - -alias less='/bin/less -r' -alias ls='/bin/ls -F --color=tty --show-control-chars' - -