diff options
Diffstat (limited to 'lisp/info.el')
| -rw-r--r-- | lisp/info.el | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/info.el b/lisp/info.el index 368255092a1..320ac7de65c 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1897,8 +1897,10 @@ of NODENAME; if none is found it then tries a case-insensitive match | |||
| 1897 | (if (equal nodename "") "Top" nodename) nil strict-case))) | 1897 | (if (equal nodename "") "Top" nodename) nil strict-case))) |
| 1898 | 1898 | ||
| 1899 | (defun Info-goto-node-web (node) | 1899 | (defun Info-goto-node-web (node) |
| 1900 | "Use `browse-url' to go to the gnu.org web server's version of NODE. | 1900 | "Use `browse-url' to go to the gnu.org Web server's version of NODE. |
| 1901 | By default, go to the current Info node." | 1901 | By default, go to the URL corresponding to the current Info node. |
| 1902 | |||
| 1903 | This uses `Info-url-for-node' to determine the URL that corresponds to NODE." | ||
| 1902 | (interactive (list (Info-read-node-name | 1904 | (interactive (list (Info-read-node-name |
| 1903 | "Go to node (default current page): " Info-current-node)) | 1905 | "Go to node (default current page): " Info-current-node)) |
| 1904 | Info-mode) | 1906 | Info-mode) |
| @@ -1924,7 +1926,10 @@ By default, go to the current Info node." | |||
| 1924 | (defun Info-url-for-node (node) | 1926 | (defun Info-url-for-node (node) |
| 1925 | "Return the URL corresponding to NODE. | 1927 | "Return the URL corresponding to NODE. |
| 1926 | 1928 | ||
| 1927 | NODE should be a string of the form \"(manual)Node\"." | 1929 | NODE should be a string of the form \"(manual)Node\". |
| 1930 | |||
| 1931 | The correspondence between Info manuals and their Web URLs is | ||
| 1932 | established by `Info-url-alist', which see." | ||
| 1928 | ;; GNU Texinfo skips whitespaces and newlines between the closing | 1933 | ;; GNU Texinfo skips whitespaces and newlines between the closing |
| 1929 | ;; parenthesis and the node-name, i.e. space, tab, line feed and | 1934 | ;; parenthesis and the node-name, i.e. space, tab, line feed and |
| 1930 | ;; carriage return. | 1935 | ;; carriage return. |