Matthieu Moy <[EMAIL PROTECTED]> writes:

> Actually, the doc says:
>
>   -q, --quiet            Suppress progress information
>
> So, removing the diff from the output in "baz diff -q" sounds more
> like a bug than a feature. I guess no one is using it so it doesn't
> matter if we change that.

I've tried re-adding the diff in the output of "baz diff -q", but you
can still get rid of it with "baz diff -q -s". This sounds satisfying:

$ baz diff
* looking for [EMAIL PROTECTED]/bazaar--log--1.5--patch-1 to compare with
* comparing to [EMAIL PROTECTED]/bazaar--log--1.5--patch-1
M  commands/diff.c

* modified files

--- orig/commands/diff.c
+++ mod/commands/diff.c
@@ -147,7 +147,6 @@
         case opt_quiet:
           {
             quiet = 1;
-           nodiffs = 1;
             break;
           }
 



$ baz diff -q
* modified files

--- orig/commands/diff.c
+++ mod/commands/diff.c
@@ -147,7 +147,6 @@
         case opt_quiet:
           {
             quiet = 1;
-           nodiffs = 1;
             break;
           }
 



$ baz diff -v
* looking for [EMAIL PROTECTED]/bazaar--log--1.5--patch-1 to compare with
* comparing to [EMAIL PROTECTED]/bazaar--log--1.5--patch-1
M  commands/diff.c

* modified files

--- orig/commands/diff.c
+++ mod/commands/diff.c
@@ -147,7 +147,6 @@
         case opt_quiet:
           {
             quiet = 1;
-           nodiffs = 1;
             break;
           }
 



$ baz diff --summary
* looking for [EMAIL PROTECTED]/bazaar--log--1.5--patch-1 to compare with
* comparing to [EMAIL PROTECTED]/bazaar--log--1.5--patch-1
M  commands/diff.c
$ baz diff --summary --quiet
$ 

-- 
Matthieu


_______________________________________________
Gnu-arch-users mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnu-arch-users

GNU arch home page:
http://savannah.gnu.org/projects/gnu-arch/

Reply via email to