From: Chris Hanson Date: Sun, 16 Dec 2007 01:10:38 +0000 (+0000) Subject: Pass "--non-recursive" when calling "bzr ls", since we don't care X-Git-Tag: 20090517-FFI~394 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=c4f2d950c88571fd9c93d6a2aa1062850338bb8c;p=mit-scheme.git Pass "--non-recursive" when calling "bzr ls", since we don't care about files in sub-directories. --- diff --git a/v7/src/edwin/vc.scm b/v7/src/edwin/vc.scm index ad8d719a3..160930e03 100644 --- a/v7/src/edwin/vc.scm +++ b/v7/src/edwin/vc.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: vc.scm,v 1.106 2007/12/05 02:47:42 cph Exp $ +$Id: vc.scm,v 1.107 2007/12/16 01:10:38 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -2551,7 +2551,7 @@ the value of vc-log-mode-hook." (%bzr-ls-test workfile "--ignored")) (define (%bzr-ls-test workfile option) - (let ((result (%bzr-run-command workfile "ls" option "."))) + (let ((result (%bzr-run-command workfile "ls" "--non-recursive" option "."))) (and result (re-string-search-forward (string-append "^\\./" (file-namestring workfile)