defaults.h (TARGET_ESC): Move ...
authorRichard Henderson <rth@cygnus.com>
Wed, 8 Sep 1999 07:01:41 +0000 (00:01 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 8 Sep 1999 07:01:41 +0000 (00:01 -0700)
        * defaults.h (TARGET_ESC): Move ...
        * system.h: ... here, where Linas had it in the first place.  Silly me.

From-SVN: r29194

gcc/ChangeLog
gcc/defaults.h
gcc/system.h

index 4fda7dc983b128447b1d7b92cdcc92c6c4a11f67..cc5a1ab2d28bfc175de5a70e385348b66ba3ada9 100644 (file)
@@ -1,3 +1,8 @@
+Wed Sep  8 00:00:16 1999  Richard Henderson  <rth@cygnus.com>
+
+       * defaults.h (TARGET_ESC): Move ...
+       * system.h: ... here, where Linas had it in the first place.  Silly me.
+
 Tue Sep  7 23:46:35 1999  Linas Vepstas  <linas@linas.org>
 
        * c-common.c: Use ISGRAPH, ISLOWER, toupper.
index 05adff842d9b576c8f698e6d7792d1b99da547f7..90d483f308efd4787c0f5c9275ee5ed3228973a2 100644 (file)
@@ -169,8 +169,3 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG);                            \
 #ifndef PROMOTE_PROTOTYPES
 #define PROMOTE_PROTOTYPES     0
 #endif
-
-/* Define a default escape character; its different for EBCDIC.  */
-#ifndef TARGET_ESC
-#define TARGET_ESC 033
-#endif
index aa44c1d9646162dd77a01dfc3ab60f092f8714be..0f960aff3489d50f0989836cf47c5b6c6b238d64 100644 (file)
@@ -121,6 +121,11 @@ extern int fputs_unlocked PROTO ((const char *, FILE *));
    host does not conform to Posix.  */
 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
 
+/* Define a default escape character; its different for EBCDIC.  */
+#ifndef TARGET_ESC
+#define TARGET_ESC 033
+#endif
+
 #ifdef HAVE_SYS_TYPES_H
 #include <sys/types.h>
 #endif