[641] in Athena Bugs
bugs in csh
daemon@ATHENA.MIT.EDU (Theodore Ts'o)
Thu Aug 25 16:32:12 1988
Date: Thu, 25 Aug 88 15:50:39 EDT
From: Theodore Ts'o <tytso@ATHENA.MIT.EDU>
To: Pink crawling six legged insects <bugs@ATHENA.MIT.EDU>
Cc: cfyi@ATHENA.MIT.EDU, ademola@ATHENA.MIT.EDU
Reply-To: tytso@ATHENA.MIT.EDU
Meta-c does NOT do the right thing, to be compatible with emacs. I
seriously oopsed on this one. There are two problems. 1) Meta-c
should be bound to capitalize_word, instead of upcase_word, to be
compatible with emacs. 2) The word detection routines have a fencepost
error in them, so that if you execute capitalize_word or upcase_word at
the beginning of a word, the word that gets affected is the PREVIOUS
one. The first problem can be fixed by putting the following line in
your .tcshrc file:
set_keymap meta c capitalize_word
Also, to be compatible with emacs, the following binding should be
added:
set_keymap meta l downcase_word
Is it too late to change the prototype files?
- Ted