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
c94dca60
Commit
c94dca60
authored
Dec 14, 2005
by
Richard M. Stallman
Browse files
(vc-default-previous-version, vc-default-next-version)
(vc-do-command): Doc fixes.
parent
6b960c10
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/vc.el
lisp/vc.el
+3
-3
No files found.
lisp/ChangeLog
View file @
c94dca60
2005-12-14 Richard M. Stallman <rms@gnu.org>
* vc.el (vc-default-previous-version, vc-default-next-version)
(vc-do-command): Doc fixes.
2005-12-14 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
* textmodes/bibtex.el (bibtex-expand-strings)
...
...
lisp/vc.el
View file @
c94dca60
...
...
@@ -762,7 +762,7 @@ in their implementation of vc-BACKEND-diff.")
(
defun
vc-default-previous-version
(
backend
file
rev
)
"Return the version number immediately preceding REV for FILE,
or nil if there is no previous version. This default
implementation works for
<major>.<minor>
-style version numbers as
implementation works for
MAJOR.MINOR
-style version numbers as
used by RCS and CVS."
(
let
((
branch
(
vc-branch-part
rev
))
(
minor-num
(
string-to-number
(
vc-minor-part
rev
))))
...
...
@@ -781,7 +781,7 @@ used by RCS and CVS."
(
defun
vc-default-next-version
(
backend
file
rev
)
"Return the version number immediately following REV for FILE,
or nil if there is no next version. This default implementation
works for
<major>.<minor>
-style version numbers as used by RCS
works for
MAJOR.MINOR
-style version numbers as used by RCS
and CVS."
(
when
(
not
(
string=
rev
(
vc-workfile-version
file
)))
(
let
((
branch
(
vc-branch-part
rev
))
...
...
@@ -930,7 +930,7 @@ Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
current buffer if BUFFER is t. If the destination buffer is not
already current, set it up properly and erase it. The command is
considered successful if its exit status does not exceed OKSTATUS (if
OKSTATUS is nil, that means to ignore error status, if it is
'
async, that
OKSTATUS is nil, that means to ignore error status, if it is
`
async
'
, that
means not to wait for termination of the subprocess; if it is t it means to
ignore all execution errors). FILE is the
name of the working file (may also be nil, to execute commands that
...
...
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