Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
bf54d814
Commit
bf54d814
authored
Feb 09, 2006
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(vc-svn-print-log): Show recent commits as well.
parent
ddd1e91e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
6 deletions
+13
-6
lisp/ChangeLog
lisp/ChangeLog
+8
-5
lisp/vc-svn.el
lisp/vc-svn.el
+5
-1
No files found.
lisp/ChangeLog
View file @
bf54d814
2006-02-08 Peter Doornbosch <peter.doornbosch@luminis.nl> (tiny change)
* vc-svn.el (vc-svn-print-log): Show recent commits as well.
2006-02-09 Juanma Barranquero <lekktu@gmail.com>
* hilit-chg.el (hilit-chg-update-all-buffers): Use `mapc' instead of
...
...
@@ -10,8 +14,8 @@
2006-02-08 Ryan Yeske <rcyeske@gmail.com>
* net/rcirc.el (rcirc-startup-channels-alist):
Add
irc.freenode.net and #emacs as defaults.
* net/rcirc.el (rcirc-startup-channels-alist):
Add
irc.freenode.net and #emacs as defaults.
(rcirc-ignore-all-activity-flag): Remove variable.
(rcirc-authinfo): New variable.
(rcirc-authinfo-filename): Remove variable.
...
...
@@ -31,9 +35,8 @@
messages.
(rcirc-user-nick): Save match data.
(rcirc-toggle-ignore-buffer-activity)
(rcirc-update-activity-string): Remove global ignore
functionality, which can be done now by toggling
rcirc-track-minor-mode.
(rcirc-update-activity-string): Remove global ignore functionality,
which can be done now by toggling rcirc-track-minor-mode.
(rcirc-track-minor-mode-map): New keymap.
(rcirc-track-minor-mode): New minor-mode.
(ignore): Make the ignore output nicer. Always print it when
...
...
lisp/vc-svn.el
View file @
bf54d814
...
...
@@ -370,7 +370,11 @@ The changes are between FIRST-VERSION and SECOND-VERSION."
(
vc-svn-command
buffer
(
if
(
and
(
vc-stay-local-p
file
)
(
fboundp
'start-process
))
'async
0
)
file
"log"
)))
file
"log"
;; By default Subversion only shows the log upto the working version,
;; whereas we also want the log of the subsequent commits. At least
;; that's what the vc-cvs.el code does.
"-rHEAD:0"
)))
(
defun
vc-svn-diff
(
file
&optional
oldvers
newvers
buffer
)
"Get a difference report using SVN between two versions of FILE."
...
...
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