From 865a5d0c26eb2ffcc4b318442a5e065e2bb7bb31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20K=C3=B6ppe?= Date: Thu, 31 Aug 2000 10:49:31 +0000 Subject: [PATCH] Use \033 instead of \e since the latter is not standard (Sun cc warns about an anachronism). git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@746 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/SWIG1.1/scanner.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Source/SWIG1.1/scanner.cxx b/SWIG/Source/SWIG1.1/scanner.cxx index 2be9f5022..139ace2aa 100644 --- a/SWIG/Source/SWIG1.1/scanner.cxx +++ b/SWIG/Source/SWIG1.1/scanner.cxx @@ -385,7 +385,7 @@ static void get_escape() { return; } if (c == 'e') { - yytext[yylen-1] = '\e'; + yytext[yylen-1] = '\033'; return; } if (c == '\'') {