Menu

Diff of /trunk/Src/UConsts.pas [r576] .. [r577]  Maximize  Restore

Switch to side-by-side view

--- a/trunk/Src/UConsts.pas
+++ b/trunk/Src/UConsts.pas
@@ -23,7 +23,7 @@
  * The Initial Developer of the Original Code is Peter Johnson
  * (http://www.delphidabbler.com/).
  *
- * Portions created by the Initial Developer are Copyright (C) 2009 Peter
+ * Portions created by the Initial Developer are Copyright (C) 2009-2010 Peter
  * Johnson. All Rights Reserved.
  *
  * Contributor(s)
@@ -45,16 +45,18 @@
 
 
 const
-  TAB   = #9;           // tab character
-  LF    = #10;          // line feed character
-  VTAB  = #11;          // vertical tab character
-  FF    = #12;          // form feed character
-  CR    = #13;          // carriage return character
+  BACKSPACE =  #8;      // backspace character
+  TAB       =  #9;      // tab character
+  LF        = #10;      // line feed character
+  VTAB      = #11;      // vertical tab character
+  FF        = #12;      // form feed character
+  CR        = #13;      // carriage return character
+  ESC       = #27;      // escape character
 
   EOL   = CR + LF;      // end of line character sequence
   EOL2  = EOL + EOL;    // 2 EOLs characters
 
-  BACKSPACE = #8;       // backspace character
+
 
   RT_HTML = MakeIntResource(23);    // HTML resource identifier
 
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.