(close): Rename do_close to avoid naming conflict with POSIX
authorBen Pfaff <blp@gnu.org>
Mon, 19 Mar 2007 04:24:56 +0000 (04:24 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 19 Mar 2007 04:24:56 +0000 (04:24 +0000)
function of same name.

src/ui/gui/ChangeLog
src/ui/gui/syntax-editor-source.c

index f208b59db73f35827fe1cdfe08ee8aa9b563538f..9a4a95cea4e5f9ba96b5f1b746eba42e4fe58df9 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-18  Ben Pfaff  <blp@gnu.org>
+
+       * syntax-editor-source.c (close): Rename do_close to avoid naming
+       conflict with POSIX function of same name.
+
 Tue Mar 13 17:20:05 CET 2007 John Darrington <john@darrington.wattle.id.au>
        * psppire.c:  Changed gtk_init to gtk_parse_args, followed by a delayed         call to gdk_init, so that psppire --version will succeed, even if it 
        cannot connect to a display .
index 6a863f69c0516321a647a0dceac18710e27910b7..887f14f3eb927867f7fe22e026fa2025f518f982 100644 (file)
@@ -100,7 +100,7 @@ read_line_from_buffer (struct getl_interface *i,
 
 
 static void
-close (struct getl_interface *i )
+do_close (struct getl_interface *i )
 {
   free (i);
 }
@@ -120,7 +120,7 @@ create_syntax_editor_source (const struct syntax_editor *se,
 
   ses->parent.interactive = always_false;
   ses->parent.read = read_line_from_buffer;
-  ses->parent.close = close;
+  ses->parent.close = do_close;
 
   ses->parent.name = name;
   ses->parent.location = location;