Correct name of function fn_is_special. Thanks to John McCabe-Dansted
authorBen Pfaff <blp@gnu.org>
Thu, 8 Feb 2007 05:26:42 +0000 (05:26 +0000)
committerBen Pfaff <blp@gnu.org>
Thu, 8 Feb 2007 05:26:42 +0000 (05:26 +0000)
<gmatht@gmail.com> for pointing this out.

src/data/ChangeLog
src/data/file-name.c

index 5cd9a02e6bd561c8ab5323fccd564abee5a3cbe9..36351668571f34b6588853abb40eb9f0c58bc4e9 100644 (file)
@@ -1,3 +1,9 @@
+Wed Feb  7 21:25:15 2007  Ben Pfaff  <blp@gnu.org>
+
+       * file-name.c (fn_normalize): Correct name of function
+       fn_is_special.  Thanks to John McCabe-Dansted <gmatht@gmail.com>
+       for pointing this out.
+
 Thu Feb  1 16:53:37 2007  Ben Pfaff  <blp@gnu.org>
 
        We are using a single member in struct file_handle, the "name"
index 57dfe08d0bc3f17d1fce15e5e03a7f47aa856df9..f937592636c1cf45453820f3b18ef60f4058aae8 100644 (file)
@@ -353,7 +353,7 @@ fn_normalize (const char *fn1)
   char *fn2;
 
   /* Don't change special file names. */
-  if (is_special_file_name (file_name))
+  if (fn_is_special (file_name))
     return xstrdup (file_name);
 
   /* First find the required buffer length. */