emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r99334: (vc-svn-print-log): Use --lim


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99334: (vc-svn-print-log): Use --limit rather than -l since the
Date: Thu, 14 Jan 2010 19:54:36 -0800
User-agent: Bazaar (2.0.2)

------------------------------------------------------------
revno: 99334
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2010-01-14 19:54:36 -0800
message:
  (vc-svn-print-log): Use --limit rather than -l since the
  former seems to be more widely accepted by various svn versions.
modified:
  lisp/ChangeLog
  lisp/vc-svn.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-01-14 18:59:31 +0000
+++ b/lisp/ChangeLog    2010-01-15 03:54:36 +0000
@@ -1,3 +1,8 @@
+2010-01-15  Glenn Morris  <address@hidden>
+
+       * vc-svn.el (vc-svn-print-log): Use --limit rather than -l since the
+       former seems to be more widely accepted by various svn versions.
+
 2010-01-14  Juanma Barranquero  <address@hidden>
 
        * find-cmd.el (find-constituents):

=== modified file 'lisp/vc-svn.el'
--- a/lisp/vc-svn.el    2010-01-13 08:35:10 +0000
+++ b/lisp/vc-svn.el    2010-01-15 03:54:36 +0000
@@ -487,13 +487,13 @@
                       ;; subsequent commits.  At least that's what the
                       ;; vc-cvs.el code does.
                       "-rHEAD:0"))
-                   (when limit (list "-l" (format "%s" limit))))))
+                   (when limit (list "--limit" (format "%s" limit))))))
        ;; Dump log for the entire directory.
        (apply 'vc-svn-command buffer 0 nil "log"
               (append
                (list
                 (if start-revision (format "-r%s" start-revision) "-rHEAD:0"))
-               (when limit (list "-l" (format "%s" limit)))))))))
+               (when limit (list "--limit" (format "%s" limit)))))))))
 
 (defun vc-svn-diff (files &optional oldvers newvers buffer)
   "Get a difference report using SVN between two revisions of fileset FILES."


reply via email to

[Prev in Thread] Current Thread [Next in Thread]