summaryrefslogtreecommitdiff
path: root/check-FIXME.pl
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2000-09-02 00:12:36 +0000
committerDarin Adler <darin@src.gnome.org>2000-09-02 00:12:36 +0000
commitee13aa809da7702fb2eeb8db65db60059697c7db (patch)
tree31cbafe1b04821c49402ddfaec7e763346ec254a /check-FIXME.pl
parent042f10b87b023765a11e22bcf03919f6175c963f (diff)
downloadnautilus-ee13aa809da7702fb2eeb8db65db60059697c7db.tar.gz
Made this function public because it's needed to get the assert right.
* libnautilus-extensions/nautilus-directory-private.h: * libnautilus-extensions/nautilus-directory-async.c: (nautilus_directory_is_anyone_monitoring_file_list): Made this function public because it's needed to get the assert right. (start_or_stop_io): Use it by the new public name. * libnautilus-extensions/nautilus-vfs-directory.c: (vfs_is_not_empty): Use the new function to get the assert right, which fixes bug 2706 (crash at startup with bookmark for nonexistent trash file). * libnautilus-extensions/nautilus-trash-directory.c: (remove_trash_volume): Fix a NautilusDirectory leak. * libnautilus-extensions/nautilus-glib-extensions.c: (print_key_string), (free_hash_tables_at_exit): Print keys before complaining about hash table so you see them first if you have things set to drop into the debugger on warnings.
Diffstat (limited to 'check-FIXME.pl')
-rwxr-xr-xcheck-FIXME.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/check-FIXME.pl b/check-FIXME.pl
index d7ce52f49..350fb4827 100755
--- a/check-FIXME.pl
+++ b/check-FIXME.pl
@@ -65,7 +65,7 @@ foreach my $file (@ARGV)
while (<FILE>)
{
next if !/FIXME/;
- if (/FIXME\s?:?\s?bugzilla.eazel.com\s+(\d+)/)
+ if (/FIXME\s*:?\s*bugzilla.eazel.com\s+(\d+)/)
{
$bug_lines{$1} .= "$file:$.:$_";
}