diff options
| author | Richard M. Stallman | 1993-05-26 18:57:54 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-26 18:57:54 +0000 |
| commit | bc2ada626ab5102f645c23d755e4754988fced4b (patch) | |
| tree | ca4c71850e0eb193a6d965238900c3937d6fdae5 | |
| parent | b05867dcfa251750b8708466a7df5b6335b3afeb (diff) | |
| download | emacs-bc2ada626ab5102f645c23d755e4754988fced4b.tar.gz emacs-bc2ada626ab5102f645c23d755e4754988fced4b.zip | |
(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
| -rw-r--r-- | lisp/info.el | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/info.el b/lisp/info.el index 8efe8e2802d..914e35fe267 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1075,19 +1075,19 @@ At end of the node's text, moves to the next node." | |||
| 1075 | (goto-char pos)) | 1075 | (goto-char pos)) |
| 1076 | (let (node) | 1076 | (let (node) |
| 1077 | (cond | 1077 | (cond |
| 1078 | ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):" t)) | 1078 | ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):")) |
| 1079 | (Info-follow-reference node)) | 1079 | (Info-follow-reference node)) |
| 1080 | ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::" t)) | 1080 | ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::")) |
| 1081 | (Info-goto-node node)) | 1081 | (Info-goto-node node)) |
| 1082 | ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):" t)) | 1082 | ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):")) |
| 1083 | (Info-menu node)) | 1083 | (Info-menu node)) |
| 1084 | ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)" t)) | 1084 | ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)")) |
| 1085 | (Info-goto-node node)) | 1085 | (Info-goto-node node)) |
| 1086 | ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)" t)) | 1086 | ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)")) |
| 1087 | (Info-goto-node node)) | 1087 | (Info-goto-node node)) |
| 1088 | ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)" t)) | 1088 | ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)")) |
| 1089 | (Info-goto-node "Top")) | 1089 | (Info-goto-node "Top")) |
| 1090 | ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)" t)) | 1090 | ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)")) |
| 1091 | (Info-goto-node node)) | 1091 | (Info-goto-node node)) |
| 1092 | ((save-excursion (forward-line 1) (eobp)) | 1092 | ((save-excursion (forward-line 1) (eobp)) |
| 1093 | (Info-next))) | 1093 | (Info-next))) |
| @@ -1151,7 +1151,7 @@ topics. Info has commands to follow the references and show you other nodes. | |||
| 1151 | 1151 | ||
| 1152 | Selecting other nodes: | 1152 | Selecting other nodes: |
| 1153 | \\[Info-next] Move to the \"next\" node of this node. | 1153 | \\[Info-next] Move to the \"next\" node of this node. |
| 1154 | \\[Info-previous] Move to the \"previous\" node of this node. | 1154 | \\[Info-prev] Move to the \"previous\" node of this node. |
| 1155 | \\[Info-up] Move \"up\" from this node. | 1155 | \\[Info-up] Move \"up\" from this node. |
| 1156 | \\[Info-menu] Pick menu item specified by name (or abbreviation). | 1156 | \\[Info-menu] Pick menu item specified by name (or abbreviation). |
| 1157 | Picking a menu item causes another node to be selected. | 1157 | Picking a menu item causes another node to be selected. |