Re-fix previous Info-fontify-node change
* lisp/info.el (Info-fontify-node): Re-fix previous fix here (bug#34661) by fixing an off-by-one error in the `looking-back'.
This commit is contained in:
parent
65441a6fab
commit
27b8638409
1 changed files with 2 additions and 2 deletions
|
@ -4797,10 +4797,10 @@ first line or header line, and for breadcrumb links.")
|
|||
(skip-syntax-backward " ("))
|
||||
(setq other-tag
|
||||
(cond ((save-match-data (looking-back "\\(^\\| \\)see"
|
||||
(- (point) 3)))
|
||||
(- (point) 4)))
|
||||
"")
|
||||
((save-match-data (looking-back "\\(^\\| \\)in"
|
||||
(- (point) 2)))
|
||||
(- (point) 3)))
|
||||
"")
|
||||
((memq (char-before) '(nil ?\. ?! ??))
|
||||
"See ")
|
||||
|
|
Loading…
Add table
Reference in a new issue