소스 검색

g.mlist: one exclusive group is enough

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60709 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 11 년 전
부모
커밋
0dbc621fa5
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      general/g.mlist/main.c

+ 3 - 3
general/g.mlist/main.c

@@ -121,7 +121,7 @@ int main(int argc, char *argv[])
     flag.type->key = 't';
     flag.type->description = _("Print data types");
     flag.type->guisection = _("Print");
-    flag.type->exclusive = "type";
+    flag.type->exclusive = "format";
     
     flag.mapset = G_define_flag();
     flag.mapset->key = 'm';
@@ -132,13 +132,13 @@ int main(int argc, char *argv[])
     flag.pretty->key = 'p';
     flag.pretty->description = _("Pretty printing in human readable format");
     flag.pretty->guisection = _("Print");
-    flag.pretty->exclusive = "format,type";
+    flag.pretty->exclusive = "format";
 
     flag.full = G_define_flag();
     flag.full->key = 'f';
     flag.full->description = _("Verbose listing (also list map titles)");
     flag.full->guisection = _("Print");
-    flag.full->exclusive = "format,type";
+    flag.full->exclusive = "format";
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);