diff options
author | Will Andrews <will@FreeBSD.org> | 2000-06-22 05:27:52 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-06-22 05:27:52 +0000 |
commit | a812c04a231c0d084545a0fbd432056d2a898c55 (patch) | |
tree | 8df10c6dba0a03dde3d727527f5838373e2199a5 /misc/less | |
parent | 4b5068fa2698b5fb85977f279eb0830bb42865ee (diff) | |
download | ports-a812c04a231c0d084545a0fbd432056d2a898c55.tar.gz ports-a812c04a231c0d084545a0fbd432056d2a898c55.zip |
Notes
Diffstat (limited to 'misc/less')
-rw-r--r-- | misc/less/files/patch-ab | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/misc/less/files/patch-ab b/misc/less/files/patch-ab new file mode 100644 index 000000000000..fb9dcb946beb --- /dev/null +++ b/misc/less/files/patch-ab @@ -0,0 +1,41 @@ +--- charset.c.orig Thu Mar 23 05:36:33 2000 ++++ charset.c Mon Jun 19 22:33:43 2000 +@@ -267,6 +267,10 @@ + control_char(c) + int c; + { ++#ifdef COLOR_LESS ++ if (c == ESC) ++ return 0; ++#endif + c &= 0377; + return (chardef[c] & IS_CONTROL_CHAR); + } +@@ -281,6 +285,20 @@ + { + static char buf[8]; + ++#ifdef COLOR_LESS ++ if(c == ESC) ++ sprintf(buf, "%c", ESC); ++ else ++ { ++ c &= 0377; ++ if (!control_char(c)) ++ sprintf(buf, "%c", c); ++ else if (!control_char(c ^ 0100)) ++ sprintf(buf, "^%c", c ^ 0100); ++ else ++ sprintf(buf, binfmt, c); ++ } ++#else + c &= 0377; + if (!control_char(c)) + sprintf(buf, "%c", c); +@@ -290,5 +308,6 @@ + sprintf(buf, "^%c", c ^ 0100); + else + sprintf(buf, binfmt, c); ++#endif + return (buf); + } |