You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-editors/teco/files/teco-gcc4.patch

12 lines
294 B

--- teco-orig/te_subs.c
+++ teco/te_subs.c
@@ -231,7 +231,7 @@
char c;
{
if (isdigit(c)) return(c - '0' + 1);
- else if isalpha(c) return(mapch_l[c] - 'a' + 11);
+ else if (isalpha(c)) return(mapch_l[c] - 'a' + 11);
else if (fors)
{
if (c == '_') return (SERBUF);