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
fe054b63
Commit
fe054b63
authored
Jun 02, 2013
by
Xue Fuqiao
Browse files
* vc/log-view.el: Doc fix.
parent
51b60f53
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
lisp/ChangeLog
lisp/ChangeLog
+1
-1
lisp/vc/log-view.el
lisp/vc/log-view.el
+8
-4
No files found.
lisp/ChangeLog
View file @
fe054b63
2013-06-02 Xue Fuqiao <xfq.free@gmail.com>
* vc/log-view.el:
Header
fix.
* vc/log-view.el:
Doc
fix.
2013-06-02 Tassilo Horn <tsdh@gnu.org>
...
...
lisp/vc/log-view.el
View file @
fe054b63
...
...
@@ -117,7 +117,7 @@
(
defvar
cvs-force-command
)
(
defgroup
log-view
nil
"Major mode for browsing log output of
RCS/CVS/SCCS
."
"Major mode for browsing log output of
revision log histories
."
:group
'pcl-cvs
:prefix
"log-view-"
)
...
...
@@ -275,6 +275,7 @@ The match group number 1 should match the revision number itself.")
(
easy-mmode-define-navigation
log-view-file
log-view-file-re
"file"
)
(
defun
log-view-goto-rev
(
rev
)
"Go to revision REV."
(
goto-char
(
point-min
))
(
ignore-errors
(
while
(
not
(
equal
rev
(
log-view-current-tag
)))
...
...
@@ -288,6 +289,7 @@ The match group number 1 should match the revision number itself.")
(
defconst
log-view-dir-re
"^cvs[.ex]* [a-z]+: Logging \\(.+\\)$"
)
(
defun
log-view-current-file
()
"Return the current file."
(
save-excursion
(
forward-line
1
)
(
or
(
re-search-backward
log-view-file-re
nil
t
)
...
...
@@ -479,7 +481,8 @@ It assumes that a log entry starts with a line matching
(
funcall
f
))))
(
defun
log-view-find-revision
(
pos
)
"Visit the version at point."
"Visit the version at POS.
If called interactively, visit the version at point."
(
interactive
"d"
)
(
unless
log-view-per-file-logs
(
when
(
>
(
length
log-view-vc-fileset
)
1
)
...
...
@@ -521,7 +524,8 @@ It assumes that a log entry starts with a line matching
(
log-view-extract-comment
)))
(
defun
log-view-annotate-version
(
pos
)
"Annotate the version at point."
"Annotate the version at POS.
If called interactively, annotate the version at point."
(
interactive
"d"
)
(
unless
log-view-per-file-logs
(
when
(
>
(
length
log-view-vc-fileset
)
1
)
...
...
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