diff options
| author | Chong Yidong | 2006-08-08 17:45:42 +0000 |
|---|---|---|
| committer | Chong Yidong | 2006-08-08 17:45:42 +0000 |
| commit | dc7ef9f02fdc4f992caea9a23e26f54a1ce48eac (patch) | |
| tree | e7b16d0e41555d47c99ab3197f1282441c720297 | |
| parent | 02a2b2ad4f23b253380485eca654bf4b338d0855 (diff) | |
| download | emacs-dc7ef9f02fdc4f992caea9a23e26f54a1ce48eac.tar.gz emacs-dc7ef9f02fdc4f992caea9a23e26f54a1ce48eac.zip | |
* info.el (Info-fontify-node): Handle preceding `in' for note
reference hiding rules.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/info.el | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8abe7e99f71..c360d6c666f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-08-08 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * info.el (Info-fontify-node): Handle preceding `in' for note | ||
| 4 | reference hiding rules. | ||
| 5 | |||
| 1 | 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2006-08-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't | 8 | * progmodes/sh-script.el (sh-quoted-subshell): Make sure we don't |
diff --git a/lisp/info.el b/lisp/info.el index 87327d8656b..dc08557e28d 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -3805,6 +3805,8 @@ the variable `Info-file-list-for-emacs'." | |||
| 3805 | (setq other-tag | 3805 | (setq other-tag |
| 3806 | (cond ((save-match-data (looking-back "\\<see")) | 3806 | (cond ((save-match-data (looking-back "\\<see")) |
| 3807 | "") | 3807 | "") |
| 3808 | ((save-match-data (looking-back "\\<in")) | ||
| 3809 | "") | ||
| 3808 | ((memq (char-before) '(nil ?\. ?! ??)) | 3810 | ((memq (char-before) '(nil ?\. ?! ??)) |
| 3809 | "See ") | 3811 | "See ") |
| 3810 | ((save-match-data | 3812 | ((save-match-data |