[BACK]Return to vis.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/vis.h between version 1.11 and 1.12

version 1.11, 2005/08/09 19:38:31 version 1.12, 2010/08/23 02:07:50
Line 40 
Line 40 
  */   */
 #define VIS_OCTAL       0x01    /* use octal \ddd format */  #define VIS_OCTAL       0x01    /* use octal \ddd format */
 #define VIS_CSTYLE      0x02    /* use \[nrft0..] where appropriate */  #define VIS_CSTYLE      0x02    /* use \[nrft0..] where appropriate */
   #define VIS_HEX         0x200   /* use hex \xdd format */
   
 /*  /*
  * to alter set of characters encoded (default is to encode all   * to alter set of characters encoded (default is to encode all
Line 50 
Line 51 
 #define VIS_NL          0x10    /* also encode newline */  #define VIS_NL          0x10    /* also encode newline */
 #define VIS_WHITE       (VIS_SP | VIS_TAB | VIS_NL)  #define VIS_WHITE       (VIS_SP | VIS_TAB | VIS_NL)
 #define VIS_SAFE        0x20    /* only encode "unsafe" characters */  #define VIS_SAFE        0x20    /* only encode "unsafe" characters */
   #define VIS_ALL         0x400   /* encode all characters */
   
 /*  /*
  * other   * other

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12