From: <ai...@us...> - 2009-03-11 00:01:16
|
Revision: 9709 http://plplot.svn.sourceforge.net/plplot/?rev=9709&view=rev Author: airwin Date: 2009-03-11 00:01:06 +0000 (Wed, 11 Mar 2009) Log Message: ----------- Make driver information consistently terminate with line feed. Modified Paths: -------------- trunk/drivers/gnome.c trunk/drivers/linuxvga.c trunk/drivers/tk.c trunk/drivers/wingcc.c trunk/drivers/xwin.c Modified: trunk/drivers/gnome.c =================================================================== --- trunk/drivers/gnome.c 2009-03-10 23:52:24 UTC (rev 9708) +++ trunk/drivers/gnome.c 2009-03-11 00:01:06 UTC (rev 9709) @@ -39,7 +39,7 @@ #include <unistd.h> /* Device info */ -PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_gnome = "gnome:Gnome Canvas:1:gnome:6:gnome"; +PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_gnome = "gnome:Gnome Canvas:1:gnome:6:gnome\n"; /*#undef DEBUG*/ #define DEBUG Modified: trunk/drivers/linuxvga.c =================================================================== --- trunk/drivers/linuxvga.c 2009-03-10 23:52:24 UTC (rev 9708) +++ trunk/drivers/linuxvga.c 2009-03-11 00:01:06 UTC (rev 9709) @@ -18,7 +18,7 @@ #include <vga.h> /* Device info */ -PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_linuxvga = "linuxvga:Linux VGA driver:0:linuxvga:8:vga"; +PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_linuxvga = "linuxvga:Linux VGA driver:0:linuxvga:8:vga\n"; /* Function prototypes */ Modified: trunk/drivers/tk.c =================================================================== --- trunk/drivers/tk.c 2009-03-10 23:52:24 UTC (rev 9708) +++ trunk/drivers/tk.c 2009-03-11 00:01:06 UTC (rev 9709) @@ -63,7 +63,7 @@ #endif /* Device info */ -PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_tk = "tk:Tcl/TK Window:1:tk:7:tk"; +PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_tk = "tk:Tcl/TK Window:1:tk:7:tk\n"; /* Number of instructions to skip between updates */ Modified: trunk/drivers/wingcc.c =================================================================== --- trunk/drivers/wingcc.c 2009-03-10 23:52:24 UTC (rev 9708) +++ trunk/drivers/wingcc.c 2009-03-11 00:01:06 UTC (rev 9709) @@ -62,7 +62,7 @@ /* Device info */ -PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_wingcc = "wingcc:Win32 (GCC):1:wingcc:9:wingcc"; +PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_wingcc = "wingcc:Win32 (GCC):1:wingcc:9:wingcc\n"; /* Struct to hold device-specific info. */ Modified: trunk/drivers/xwin.c =================================================================== --- trunk/drivers/xwin.c 2009-03-10 23:52:24 UTC (rev 9708) +++ trunk/drivers/xwin.c 2009-03-11 00:01:06 UTC (rev 9709) @@ -45,7 +45,7 @@ #endif /* Device info */ -PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_xwin = "xwin:X-Window (Xlib):1:xwin:5:xw"; +PLDLLIMPEXP_DRIVER const char* plD_DEVICE_INFO_xwin = "xwin:X-Window (Xlib):1:xwin:5:xw\n"; static int synchronize = 0; /* change to 1 for X synchronized operation */ /* Use "-drvopt sync" cmd line option to set. */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |