]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-svn-print-log): Use --limit rather than -l since the
authorGlenn Morris <rgm@gnu.org>
Fri, 15 Jan 2010 03:54:36 +0000 (19:54 -0800)
committerGlenn Morris <rgm@gnu.org>
Fri, 15 Jan 2010 03:54:36 +0000 (19:54 -0800)
former seems to be more widely accepted by various svn versions.

lisp/ChangeLog
lisp/vc-svn.el

index ab4334c8e02baacb169454a22702abc1c02aa3bc..0e5fc902b4880dab6e4c666f27380f1607552ba8 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-15  Glenn Morris  <rgm@gnu.org>
+
+       * 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  <lekktu@gmail.com>
 
        * find-cmd.el (find-constituents):
index 0f2216079bd6c2b0747a90f2cfc93945d99ff981..658d4528f685b90b2d9c89e9ea2f6730640cd569 100644 (file)
@@ -487,13 +487,13 @@ or svn+ssh://."
                       ;; 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."