aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-02-11 03:21:08 +0000
committerGlenn Morris2008-02-11 03:21:08 +0000
commit4ba89826fb3fdd9c23da03d6546a7f99bfeba23d (patch)
tree67b7c88c1dc4cc05892dce1037c403eb75eaf7c8
parentd6f0bd5a78a41fadb60cd28fa19edb45441f9b27 (diff)
downloademacs-4ba89826fb3fdd9c23da03d6546a7f99bfeba23d.tar.gz
emacs-4ba89826fb3fdd9c23da03d6546a7f99bfeba23d.zip
Kevin Ryde <user42 at zip.com.au>
(Info-next-reference, Info-prev-reference) (Info-try-follow-nearest-node): Move to and follow https:// links too.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/info.el6
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0c5b7141e30..c4cfe013835 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-02-11 Kevin Ryde <user42@zip.com.au>
2
3 * info.el (Info-next-reference, Info-prev-reference)
4 (Info-try-follow-nearest-node): Move to and follow https:// links too.
5
12008-02-11 Sam Steingold <sds@gnu.org> 62008-02-11 Sam Steingold <sds@gnu.org>
2 7
3 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch). 8 * vc-hooks.el (vc-prefix-key): Remove (undo 2008-02-06 patch).
@@ -2321,7 +2326,7 @@
2321 2326
23222008-02-01 Dave Love <fx@gnu.org> 23272008-02-01 Dave Love <fx@gnu.org>
2323 2328
2324 * international/characters.el: Make $,1!8(B and ,A(B a case pair. 2329 * international/characters.el: Make ,_/(B and ,A(B a case pair.
2325 2330
23262008-02-01 Kenichi Handa <handa@etl.go.jp> 23312008-02-01 Kenichi Handa <handa@etl.go.jp>
2327 2332
diff --git a/lisp/info.el b/lisp/info.el
index 91305ee025b..090e470efec 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -2673,7 +2673,7 @@ See `Info-scroll-down'."
2673(defun Info-next-reference (&optional recur) 2673(defun Info-next-reference (&optional recur)
2674 "Move cursor to the next cross-reference or menu item in the node." 2674 "Move cursor to the next cross-reference or menu item in the node."
2675 (interactive) 2675 (interactive)
2676 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tp://") 2676 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
2677 (old-pt (point)) 2677 (old-pt (point))
2678 (case-fold-search t)) 2678 (case-fold-search t))
2679 (or (eobp) (forward-char 1)) 2679 (or (eobp) (forward-char 1))
@@ -2695,7 +2695,7 @@ See `Info-scroll-down'."
2695(defun Info-prev-reference (&optional recur) 2695(defun Info-prev-reference (&optional recur)
2696 "Move cursor to the previous cross-reference or menu item in the node." 2696 "Move cursor to the previous cross-reference or menu item in the node."
2697 (interactive) 2697 (interactive)
2698 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tp://") 2698 (let ((pat "\\*note[ \n\t]+\\([^:]+\\):\\|^\\* .*:\\|[hf]t?tps?://")
2699 (old-pt (point)) 2699 (old-pt (point))
2700 (case-fold-search t)) 2700 (case-fold-search t))
2701 (or (re-search-backward pat nil t) 2701 (or (re-search-backward pat nil t)
@@ -3123,7 +3123,7 @@ If FORK is a string, it is the name to use for the new buffer."
3123If FORK is non-nil, it i spassed to `Info-goto-node'." 3123If FORK is non-nil, it i spassed to `Info-goto-node'."
3124 (let (node) 3124 (let (node)
3125 (cond 3125 (cond
3126 ((Info-get-token (point) "[hf]t?tp://" "[hf]t?tp://\\([^ \t\n\"`({<>})']+\\)") 3126 ((Info-get-token (point) "[hf]t?tps?://" "[hf]t?tps?://\\([^ \t\n\"`({<>})']+\\)")
3127 (setq node t) 3127 (setq node t)
3128 (browse-url (browse-url-url-at-point))) 3128 (browse-url (browse-url-url-at-point)))
3129 ((setq node (Info-get-token (point) "\\*note[ \n\t]+" 3129 ((setq node (Info-get-token (point) "\\*note[ \n\t]+"