I wrote:
> [...]
> Well, I usually use Emacs to view info files, so I could
> always advice Info-index.
Or just use the included info-lookup-symbol (C-h S). It on-
ly works in texinfo files, not in the *info* buffer itself,
though, and one has to tweak the default pattern a bit:
| (info-lookup-add-help
| :mode 'texinfo-mode
| :regexp "@\\([a-zA-Z]+\\|[^a-zA-Z]\\)"
| :doc-spec '(("(texinfo)Command and Variable Index"
| (lambda (item)
| (if (string-match "^@\\([a-zA-Z]+\\|[^a-zA-Z]\\)\\( .*\\)?$"
item)
| (match-string 1 item)))
| "`" "[' ]")))
But it's much friendlier than TeX :-).
Tim