- nano.h:
- Since we only use vsnprintf() now, remove the #ifdef block for
HAVE_SNPRINTF. (DLR)
- - Remove TOP from the topmidnone enum, and rename it centernone.
- (DLR)
+ - Remove TOP from the topmidnone enum, and rename the latter
+ centernone. (DLR)
- Move stdlib.h, dirent.h, regex.h, and assert.h includes here,
as every source file needs them. (DLR)
- Rename the updown enum scroll_dir and the centernone enum
}
/* This function is equivalent to iscntrl(), except in that it also
- * handles control characters with their high bits set. */
+ * handles high-bit control characters. */
bool is_cntrl_char(int c)
{
return (-128 <= c && c < -96) || (0 <= c && c < 32) ||