diff options
Diffstat (limited to 'miscutils/less.c')
-rw-r--r-- | miscutils/less.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index a6649c5ca..046a3c459 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -450,12 +450,12 @@ static void cap_cur_fline(int nlines) | |||
450 | } | 450 | } |
451 | } | 451 | } |
452 | 452 | ||
453 | static const char controls[] = | 453 | static const char controls[] ALIGN1 = |
454 | /* NUL: never encountered; TAB: not converted */ | 454 | /* NUL: never encountered; TAB: not converted */ |
455 | /**/"\x01\x02\x03\x04\x05\x06\x07\x08" "\x0a\x0b\x0c\x0d\x0e\x0f" | 455 | /**/"\x01\x02\x03\x04\x05\x06\x07\x08" "\x0a\x0b\x0c\x0d\x0e\x0f" |
456 | "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" | 456 | "\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f" |
457 | "\x7f\x9b"; /* DEL and infamous Meta-ESC :( */ | 457 | "\x7f\x9b"; /* DEL and infamous Meta-ESC :( */ |
458 | static const char ctrlconv[] = | 458 | static const char ctrlconv[] ALIGN1 = |
459 | /* '\n': it's a former NUL - subst with '@', not 'J' */ | 459 | /* '\n': it's a former NUL - subst with '@', not 'J' */ |
460 | "\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x40\x4b\x4c\x4d\x4e\x4f" | 460 | "\x40\x41\x42\x43\x44\x45\x46\x47\x48\x49\x40\x4b\x4c\x4d\x4e\x4f" |
461 | "\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"; | 461 | "\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x5b\x5c\x5d\x5e\x5f"; |