Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e709e39d
Commit
e709e39d
authored
Jan 09, 2010
by
Chong Yidong
Browse files
* man.el (Man-goto-section): Signal error if section not found (Bug#5317).
parent
8fe7200c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/man.el
lisp/man.el
+3
-1
No files found.
lisp/ChangeLog
View file @
e709e39d
2010-01-09 Chong Yidong <cyd@stupidchicken.com>
* man.el (Man-goto-section): Signal error if the section is not
found (Bug#5317).
2010-01-09 Juanma Barranquero <lekktu@gmail.com>
* vc-bzr.el (vc-bzr-working-revision): On Windows and MS-DOS, accept
...
...
lisp/man.el
View file @
e709e39d
...
...
@@ -1500,7 +1500,9 @@ Returns t if section is found, nil otherwise."
(
string=
chosen
""
))
default
chosen
)))
(
Man-find-section
(
aheadsym
Man-sections-alist
)))
(
unless
(
Man-find-section
(
aheadsym
Man-sections-alist
))
(
error
"Section not found"
)))
(
defun
Man-goto-see-also-section
()
"Move point to the \"SEE ALSO\" section.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment