vte r2259 - in trunk: . src



Author: behdad
Date: Mon Dec  1 08:05:34 2008
New Revision: 2259
URL: http://svn.gnome.org/viewvc/vte?rev=2259&view=rev

Log:
2008-12-01  Behdad Esfahbod  <behdad gnome org>

        * src/buffer.c:
        * src/caps.c:
        * src/dumpkeys.c:
        * src/interpret.c:
        * src/iso2022.c:
        * src/keymap.c:
        * src/matcher.c:
        * src/mev.c:
        * src/pty.c:
        * src/reaper.c:
        * src/reflect.c:
        * src/ring.c:
        * src/slowcat.c:
        * src/ssfe.c:
        * src/table.c:
        * src/trie.c:
        * src/vteaccess.c:
        * src/vtebg.c:
        * src/vteconv.c:
        * src/vtedraw.c:
        * src/vteseq.c:
        * src/vteskel.c:
        * src/xticker.c:
        #include <config.h> instead of "../config.h".



Modified:
   trunk/ChangeLog
   trunk/src/buffer.c
   trunk/src/caps.c
   trunk/src/dumpkeys.c
   trunk/src/interpret.c
   trunk/src/iso2022.c
   trunk/src/keymap.c
   trunk/src/matcher.c
   trunk/src/mev.c
   trunk/src/pty.c
   trunk/src/reaper.c
   trunk/src/reflect.c
   trunk/src/ring.c
   trunk/src/slowcat.c
   trunk/src/ssfe.c
   trunk/src/table.c
   trunk/src/trie.c
   trunk/src/vteaccess.c
   trunk/src/vtebg.c
   trunk/src/vteconv.c
   trunk/src/vtedraw.c
   trunk/src/vteseq.c
   trunk/src/vteskel.c
   trunk/src/xticker.c

Modified: trunk/src/buffer.c
==============================================================================
--- trunk/src/buffer.c	(original)
+++ trunk/src/buffer.c	Mon Dec  1 08:05:34 2008
@@ -18,7 +18,7 @@
  *
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <glib.h>
 #include <limits.h>

Modified: trunk/src/caps.c
==============================================================================
--- trunk/src/caps.c	(original)
+++ trunk/src/caps.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <stdlib.h>
 #include <glib.h>
 #include "caps.h"

Modified: trunk/src/dumpkeys.c
==============================================================================
--- trunk/src/dumpkeys.c	(original)
+++ trunk/src/dumpkeys.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif

Modified: trunk/src/interpret.c
==============================================================================
--- trunk/src/interpret.c	(original)
+++ trunk/src/interpret.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <assert.h>
 #include <ctype.h>

Modified: trunk/src/iso2022.c
==============================================================================
--- trunk/src/iso2022.c	(original)
+++ trunk/src/iso2022.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <errno.h>
 #include <stdlib.h>

Modified: trunk/src/keymap.c
==============================================================================
--- trunk/src/keymap.c	(original)
+++ trunk/src/keymap.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <stdlib.h>
 #include <stdarg.h>
 #include <string.h>

Modified: trunk/src/matcher.c
==============================================================================
--- trunk/src/matcher.c	(original)
+++ trunk/src/matcher.c	Mon Dec  1 08:05:34 2008
@@ -17,7 +17,7 @@
  */
 
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <string.h>
 #include <glib-object.h>

Modified: trunk/src/mev.c
==============================================================================
--- trunk/src/mev.c	(original)
+++ trunk/src/mev.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #ifdef HAVE_SYS_TERMIOS_H
 #include <sys/termios.h>

Modified: trunk/src/pty.c
==============================================================================
--- trunk/src/pty.c	(original)
+++ trunk/src/pty.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <sys/ioctl.h>
 #include <sys/socket.h>

Modified: trunk/src/reaper.c
==============================================================================
--- trunk/src/reaper.c	(original)
+++ trunk/src/reaper.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <signal.h>

Modified: trunk/src/reflect.c
==============================================================================
--- trunk/src/reflect.c	(original)
+++ trunk/src/reflect.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <stdio.h>
 #include <stdlib.h>

Modified: trunk/src/ring.c
==============================================================================
--- trunk/src/ring.c	(original)
+++ trunk/src/ring.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <stdio.h>
 #include <string.h>
 #include <glib.h>

Modified: trunk/src/slowcat.c
==============================================================================
--- trunk/src/slowcat.c	(original)
+++ trunk/src/slowcat.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <errno.h>

Modified: trunk/src/ssfe.c
==============================================================================
--- trunk/src/ssfe.c	(original)
+++ trunk/src/ssfe.c	Mon Dec  1 08:05:34 2008
@@ -18,7 +18,7 @@
    From attachment to Red Hat Bugzilla #75900.
 */
 
-#include "../config.h"
+#include <config.h>
 
 #include <stdarg.h>
 

Modified: trunk/src/table.c
==============================================================================
--- trunk/src/table.c	(original)
+++ trunk/src/table.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <assert.h>
 #include <ctype.h>

Modified: trunk/src/trie.c
==============================================================================
--- trunk/src/trie.c	(original)
+++ trunk/src/trie.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #ifdef HAVE_SYS_SYSLIMITS_H
 #include <sys/syslimits.h>

Modified: trunk/src/vteaccess.c
==============================================================================
--- trunk/src/vteaccess.c	(original)
+++ trunk/src/vteaccess.c	Mon Dec  1 08:05:34 2008
@@ -20,7 +20,7 @@
  * accessibility code. */
 
 
-#include "../config.h"
+#include <config.h>
 
 #include <atk/atk.h>
 #include <gtk/gtk.h>

Modified: trunk/src/vtebg.c
==============================================================================
--- trunk/src/vtebg.c	(original)
+++ trunk/src/vtebg.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <stdio.h>
 #include <string.h>
 #include <gtk/gtk.h>

Modified: trunk/src/vteconv.c
==============================================================================
--- trunk/src/vteconv.c	(original)
+++ trunk/src/vteconv.c	Mon Dec  1 08:05:34 2008
@@ -19,7 +19,7 @@
 /* The interfaces in this file are subject to change at any time. */
 
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <errno.h>
 #include <string.h>

Modified: trunk/src/vtedraw.c
==============================================================================
--- trunk/src/vtedraw.c	(original)
+++ trunk/src/vtedraw.c	Mon Dec  1 08:05:34 2008
@@ -19,7 +19,7 @@
 /* The interfaces in this file are subject to change at any time. */
 
 
-#include "../config.h"
+#include <config.h>
 
 #include <stdio.h>
 #include <stdlib.h>

Modified: trunk/src/vteseq.c
==============================================================================
--- trunk/src/vteseq.c	(original)
+++ trunk/src/vteseq.c	Mon Dec  1 08:05:34 2008
@@ -17,7 +17,7 @@
  */
 
 
-#include "../config.h"
+#include <config.h>
 
 #include <limits.h>
 #ifdef HAVE_SYS_SYSLIMITS_H

Modified: trunk/src/vteskel.c
==============================================================================
--- trunk/src/vteskel.c	(original)
+++ trunk/src/vteskel.c	Mon Dec  1 08:05:34 2008
@@ -17,7 +17,7 @@
  */
 
 
-#include "../config.h"
+#include <config.h>
 
 #include <sys/param.h>
 #include <stdio.h>

Modified: trunk/src/xticker.c
==============================================================================
--- trunk/src/xticker.c	(original)
+++ trunk/src/xticker.c	Mon Dec  1 08:05:34 2008
@@ -16,7 +16,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include "../config.h"
+#include <config.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/time.h>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]