[5510] in Athena Bugs
vax 7.0F: emacs lisp
daemon@ATHENA.MIT.EDU (Raul)
Wed Jul 11 17:51:15 1990
To: bugs@ATHENA.MIT.EDU
Date: Wed, 11 Jul 90 17:51:01 EDT
From: Raul <acevedo@ATHENA.MIT.EDU>
System name: navigator
Type and version: CVAXSTAR 7.0F
Display type: SM
What were you trying to do?
Do some string completion with `completing-read', ignoring
case by having a `let' with (completion-ignore-case t).
What's wrong:
`completing-read': does not upcase the last word you enter
if you hit RET after typing it in. Example:
(let ((completion-ignore-case t))
(completing-read "Hi there: "
'(("Foo")) nil t))
==> "foo"
What should have happened:
It should have returned "Foo".
Please describe any relevant documentation references:
C-h f completing-read, C-h v completion-ignore-case.