diff options
| -rw-r--r-- | lisp/info.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el index 34e3a92bd28..67fdec75f88 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1149,8 +1149,8 @@ Bind this in case the user sets it to nil." | |||
| 1149 | (let ((bound (point))) | 1149 | (let ((bound (point))) |
| 1150 | (forward-line 1) | 1150 | (forward-line 1) |
| 1151 | (cond ((re-search-backward (concat name ":") bound t) | 1151 | (cond ((re-search-backward (concat name ":") bound t) |
| 1152 | (goto-char (match-end 0)) | 1152 | (goto-char (match-end 0)) |
| 1153 | (Info-following-node-name)) | 1153 | (Info-following-node-name)) |
| 1154 | ((not (eq errorname t)) | 1154 | ((not (eq errorname t)) |
| 1155 | (error "Node has no %s" | 1155 | (error "Node has no %s" |
| 1156 | (capitalize (or errorname name)))))))))) | 1156 | (capitalize (or errorname name)))))))))) |