diff options
| author | Richard M. Stallman | 2003-10-05 13:51:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-10-05 13:51:04 +0000 |
| commit | 718e6bc7771b6983b6407b363f583128f96237dd (patch) | |
| tree | ef2cd00e475b5a5d8fcb406cc9c16f17d18ca57f | |
| parent | 28d02da1e7175d61d8c4367ea39f39ad0f5a766a (diff) | |
| download | emacs-718e6bc7771b6983b6407b363f583128f96237dd.tar.gz emacs-718e6bc7771b6983b6407b363f583128f96237dd.zip | |
(Info-following-node-name): New function.
| -rw-r--r-- | lisp/info.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el index 28869c4f469..e11fdbf16ad 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -1441,6 +1441,11 @@ End of submatch 0, 1, and 3 are the same, so you can safely concat." | |||
| 1441 | "[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space. | 1441 | "[" (or allowedchars "^,\t\n") " ]" ;The last char can't be a space. |
| 1442 | "\\|\\)\\)")) ;Allow empty node names. | 1442 | "\\|\\)\\)")) ;Allow empty node names. |
| 1443 | 1443 | ||
| 1444 | ;;; For compatibility; other files have used this name. | ||
| 1445 | (defun Info-following-node-name () | ||
| 1446 | (and (looking-at (Info-following-node-name-re)) | ||
| 1447 | (match-string 1))) | ||
| 1448 | |||
| 1444 | (defun Info-next () | 1449 | (defun Info-next () |
| 1445 | "Go to the next node of this node." | 1450 | "Go to the next node of this node." |
| 1446 | (interactive) | 1451 | (interactive) |