[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Cygwin environment for w3m
- From: Uday S Reddy <usr.vm.rocks@xxxxxxxxx>
- Date: Sun, 18 Nov 2012 14:12:49 +0000
- X-ml-name: emacs-w3m
- X-mail-count: 11923
Emacs-w3m is setting the CYGWIN environment variable to "binmode tty".
Unfortunately, the tty option is obsolete. It generates a warning
message like:
"tty" option detected in CYGWIN environment variable.
CYGWIN=tty is no longer supported. Please remove it from your
CYGWIN environment variable and use a terminal emulator like mintty,
xterm, or rxvt.
The setting of w3m-command-environment in w3m.el should be changed.
Temporary work-around for users: Put this in your ~/.emacs-w3m file:
; Fix the CYGWIN environment variable
(when (eq system-type 'windows-nt)
(setcdr (assoc "CYGWIN" w3m-command-environment)
"binmode"))
Cheers,
Uday Reddy