diff options
author | Hanno Boeck <hanno@gentoo.org> | 2005-01-12 16:05:16 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2005-01-12 16:05:16 +0000 |
commit | e7076d430d8207ef373758552a4d7b5891d3675f (patch) | |
tree | 5550e17321fd9cc0d52a843c78423719ee6c900c /app-editors/fte/files | |
parent | added ~amd64 to KEYWORDS. fixes bug #67323. (diff) | |
download | historical-e7076d430d8207ef373758552a4d7b5891d3675f.tar.gz historical-e7076d430d8207ef373758552a4d7b5891d3675f.tar.bz2 historical-e7076d430d8207ef373758552a4d7b5891d3675f.zip |
fte version bump
Diffstat (limited to 'app-editors/fte/files')
-rw-r--r-- | app-editors/fte/files/digest-fte-20050108 | 2 | ||||
-rw-r--r-- | app-editors/fte/files/fte-gcc34 | 38 |
2 files changed, 40 insertions, 0 deletions
diff --git a/app-editors/fte/files/digest-fte-20050108 b/app-editors/fte/files/digest-fte-20050108 new file mode 100644 index 000000000000..9bd190d0e669 --- /dev/null +++ b/app-editors/fte/files/digest-fte-20050108 @@ -0,0 +1,2 @@ +MD5 910ef0041d5d56ede596fc6eb90c1f11 fte-20050108-src.zip 545246 +MD5 200d22e821e550148c0494b54d7dfd25 fte-20050108-common.zip 186252 diff --git a/app-editors/fte/files/fte-gcc34 b/app-editors/fte/files/fte-gcc34 new file mode 100644 index 000000000000..51940e650657 --- /dev/null +++ b/app-editors/fte/files/fte-gcc34 @@ -0,0 +1,38 @@ +--- fte/src/con_slang.cpp 2003-02-16 19:23:58.000000000 +0100 ++++ fte-gcc34/src/con_slang.cpp 2005-01-12 16:57:38.050369064 +0100 +@@ -246,7 +246,7 @@ + SLsmg_write_nchars(slang_dchs, sizeof(slang_dchs)); + + SLsmg_gotorc(0, 0); +- SLsmg_read_raw(linebuf, sizeof(slang_dchs)); ++ SLsmg_read_raw((SLsmg_Char_Type*)linebuf, sizeof(slang_dchs)); + for (i = 0; i < sizeof(slang_dchs); i++) + raw_dchs[i] = (linebuf[i]) & 0xff; + +@@ -368,7 +368,7 @@ + ConQueryCursorPos(&CurX, &CurY); + while (H > 0) { + SLsmg_gotorc(Y++, X); +- SLsmg_write_raw(box, W); ++ SLsmg_write_raw((SLsmg_Char_Type*)box, W); + box += W; + H--; + } +@@ -386,7 +386,7 @@ + ConQueryCursorPos(&CurX, &CurY); + while (H > 0) { + SLsmg_gotorc(Y++, X); +- SLsmg_read_raw(Cell, W); ++ SLsmg_read_raw((SLsmg_Char_Type*)Cell, W); + for (i = 0; i < W; i++) + if (Cell[i] & 0x8000) { + ch = Cell[i] & 0xff; +@@ -409,7 +409,7 @@ + ConQueryCursorPos(&CurX, &CurY); + while (H > 0) { + SLsmg_gotorc(Y++, X); +- SLsmg_read_raw(box, W); ++ SLsmg_read_raw((SLsmg_Char_Type*)box, W); + box += W; + H--; + } |