diff options
author | Darin Adler <darin@src.gnome.org> | 2000-05-17 00:48:10 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2000-05-17 00:48:10 +0000 |
commit | ee19920029abe7e89bee09a109a8c1518a12cc61 (patch) | |
tree | fcbf8388b4ad0124c4bf045478054b790ed0dbe5 /check-FIXME.pl | |
parent | a35bf15d93ab6da319459f407fb814a35e4c19aa (diff) | |
download | nautilus-ee19920029abe7e89bee09a109a8c1518a12cc61.tar.gz |
Maciej helped me refine the find command so it doesn't go into po or CVS
* check-FIXME.pl: Maciej helped me refine the find command so it
doesn't go into po or CVS directories and only looks at files.
* components/music/nautilus-music-view.c:
(nautilus_music_view_background_changed): Turned the metadata saving
code back on. I think I fixed the problem that made Andy turn it off.
* libnautilus-extensions/nautilus-directory-metafile.c:
(set_metadata_eat_value): Fixed a double-delete problem. Oops.
(nautilus_directory_set_metadata): Fixed code that wasn't emitting the
metadata_changed signal enough.
* libnautilus-extensions/nautilus-gdk-extensions.c:
(nautilus_fill_rectangle_with_color): Fixed a crash in Gdk. It turns
out gdk_rgb needs to be initialized, even though I don't think that
was the intent.
Diffstat (limited to 'check-FIXME.pl')
-rwxr-xr-x | check-FIXME.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-FIXME.pl b/check-FIXME.pl index fbd2428f5..9320f3cb5 100755 --- a/check-FIXME.pl +++ b/check-FIXME.pl @@ -33,7 +33,7 @@ use strict; my %skip_files; if (!@ARGV) { - @ARGV = `find . -name '*' -and ! \\( -name '*~' -or -name '#*' -or -name 'ChangeLog*' -or -name 'Entries' \\) -print`; + @ARGV = `find . \\( \\( -name po -prune -false \\) -or \\( -name CVS -prune -false \\) -or \\( -name '*' -and -type f \\) \\) -and ! \\( -name '*~' -or -name '#*' -or -name 'ChangeLog*' -or -name Entries \\) -print`; %skip_files = ( "./TODO" => 1, |