X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/f42349881b1b37e1c84f18559c2a6b8236ecb6d2..aec3bf9f49c8c0d0356a0e57f362bd0e23206e7d:/src/cm.h diff --git a/src/cm.h b/src/cm.h index f3455b7956..5a1b1010a2 100644 --- a/src/cm.h +++ b/src/cm.h @@ -47,7 +47,7 @@ struct cm char *cm_abs; /* absolute (cm) */ const char *cm_habs; /* horizontal absolute (ch) */ const char *cm_vabs; /* vertical absolute (cv) */ -#if 0 +#if false const char *cm_ds; /* "don't send" string (ds) */ #endif const char *cm_multiup; /* multiple up (UP) */ @@ -57,19 +57,19 @@ struct cm int cm_cols; /* number of cols on screen (co) */ int cm_rows; /* number of rows on screen (li) */ int cm_tabwidth; /* tab width (it) */ - unsigned int cm_autowrap:1; /* autowrap flag (am) */ - unsigned int cm_magicwrap:1; /* VT-100: cursor stays in last col but + bool_bf cm_autowrap : 1; /* autowrap flag (am) */ + bool_bf cm_magicwrap : 1; /* VT-100: cursor stays in last col but will cm_wrap if next char is printing (xn) */ - unsigned int cm_usetabs:1; /* if set, use tabs */ - unsigned int cm_losewrap:1; /* if reach right margin, forget cursor + bool_bf cm_usetabs : 1; /* if set, use tabs */ + bool_bf cm_losewrap : 1; /* if reach right margin, forget cursor location */ - unsigned int cm_autolf:1; /* \r performs a \r\n (rn) */ + bool_bf cm_autolf : 1; /* \r performs a \r\n (rn) */ /* Parameterized capabilities. This needs to be a struct since the costs are accessed through pointers. */ -#if 0 +#if false struct parmcap cc_abs; /* absolute (cm) */ struct parmcap cc_habs; /* horizontal absolute (ch) */ struct parmcap cc_vabs; /* vertical absolute (cv) */