aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/man.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3c53662600a..ca021b92a44 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-01-09 Chong Yidong <cyd@stupidchicken.com>
2
3 * man.el (Man-goto-section): Signal error if the section is not
4 found (Bug#5317).
5
12010-01-09 Juanma Barranquero <lekktu@gmail.com> 62010-01-09 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept 8 * vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
diff --git a/lisp/man.el b/lisp/man.el
index b34ca768707..bc475852808 100644
--- a/lisp/man.el
+++ b/lisp/man.el
@@ -1500,7 +1500,9 @@ Returns t if section is found, nil otherwise."
1500 (string= chosen "")) 1500 (string= chosen ""))
1501 default 1501 default
1502 chosen))) 1502 chosen)))
1503 (Man-find-section (aheadsym Man-sections-alist))) 1503 (unless (Man-find-section (aheadsym Man-sections-alist))
1504 (error "Section not found")))
1505
1504 1506
1505(defun Man-goto-see-also-section () 1507(defun Man-goto-see-also-section ()
1506 "Move point to the \"SEE ALSO\" section. 1508 "Move point to the \"SEE ALSO\" section.