Index: lisp/man.el =================================================================== RCS file: /sources/emacs/emacs/lisp/man.el,v retrieving revision 1.167 diff -c -r1.167 man.el *** lisp/man.el 24 Mar 2007 09:43:07 -0000 1.167 --- lisp/man.el 9 May 2007 11:17:29 -0000 *************** *** 1296,1302 **** (forward-line 1)) (if (re-search-forward Man-heading-regexp (point-max) t n) (beginning-of-line) ! (goto-char (point-max))))) (defun Man-previous-section (n) "Move point to Nth previous section (default 1)." --- 1296,1304 ---- (forward-line 1)) (if (re-search-forward Man-heading-regexp (point-max) t n) (beginning-of-line) ! (goto-char (point-max)) ! ;; The last line doesn't belong to any section. ! (forward-line -1)))) (defun Man-previous-section (n) "Move point to Nth previous section (default 1)."