[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Support find-tag in Info-mode
From: |
Richard M. Stallman |
Subject: |
Re: Support find-tag in Info-mode |
Date: |
Fri, 04 Nov 2005 12:27:31 -0500 |
Try to use M-. on `foo' in Info-mode and you get the error, "Can't find
tag foo'.
I have little experience with syntax entries, but the following fixes
find-tag at the expense of losing the ability to consider a contraction
as part of the same word:
(add-hook 'Info-mode-hook
'(lambda ()
(modify-syntax-entry ?' "' ")))
This would make M-f and M-b work badly, so it certainly is not a good
idea.