diff options
author | Glenn Morris <rgm@gnu.org> | 2007-09-13 08:00:47 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-09-13 08:00:47 +0000 |
commit | 53d1f30dca7882b69e5793d528a8a41e27e3b770 (patch) | |
tree | ba0c5288820ae1dbb678a1fa3a7936878ac0e500 /lisp/man.el | |
parent | 9de9ed525651ee2acf074b31a069d8f6c9a631ff (diff) | |
download | emacs-53d1f30dca7882b69e5793d528a8a41e27e3b770.tar.gz |
Jari Aalto <jari.aalto at cante.net>
(Man-default-man-entry): At end of line, continue looking to the next
line for possible end of hyphenated command.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el index c7593e88dda..fc84f327271 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -652,7 +652,13 @@ If POS is nil, the current point is used." (skip-chars-backward "-a-zA-Z0-9._+:") (let ((start (point))) (skip-chars-forward "-a-zA-Z0-9._+:") - (setq word (buffer-substring-no-properties start (point)))) + ;; If there is a continuation at the end of line, check the + ;; following line too, eg: + ;; see this- + ;; command-here(1) + (setq word (buffer-substring-no-properties start (point))) + (if (looking-at "[ \t\r\n]+\\([-a-zA-Z0-9._+:]+\\)([0-9])") + (setq word (concat word (match-string 1))))) (if (string-match "[._]+$" word) (setq word (substring word 0 (match-beginning 0)))) ;; If looking at something like *strcat(... , remove the '*' |