-
This bug seen in FreeDOS build 2036 running in DOSEMU 1.4 within Mandriva 2009.0.
2009-07-02 00:30:10 UTC in The FreeDOS Project
-
I was debugging some information using the PICDISL program located at http://www.joescat.com/micro/picdisl.zip and noted that the MORE command expands tabs, but expands the TABs incorrectly.
(the above ZIP file has the picdisl program and the test.hex file used if you need to duplicate the error).
I tink it makes more sense to let TABs be expanded by the display, printer, terminal, or...
2009-07-02 00:13:58 UTC in The FreeDOS Project
-
minor fix for 0.60.6 to include before next 0.60.x.
2008-07-28 07:07:03 UTC in GNU Aspell
-
Removed 2 lines from previous diff patch:
1) removed "if (uc) return 1;" before memcpy
...because wc==wl should load c='\0' and therefore branch into "if ((c & 0x80) || uc) { //insert UTF8 buffered character" if last char is UTF8
2) removed "if (c & 0x80) return 1;"
...because always should branch into ""if ((c & 0x80) || uc) { //insert UTF8 buffered character"
File Added...
2008-06-29 19:41:20 UTC in Hunspell
-
Looking at reverseword_utf routine, it calls 2 other routines to 1st store values in a table, then retrieve values after reversing.
Recoded routine to use a temporary utf character buffer so now it should work with 4char utf values correctly.
grep shows several locations where reverse is called, but I have not managed to find a way to quickly/easily test all possible combinations to verify...
2008-06-29 19:14:50 UTC in Hunspell
-
Duplicated effort of patch 2005643 due to similar routines found using grep.
Cleaned-up alloc/free in DictMgr and DictMgr~
NOTE: None of these routines are tested since unclear how to access or test routines.
Is DictMgr being used by anything? or is it a file that should be discarded due to similar nature of csutil.cxx (which appears to avoid a lot of time in the malloc/free used here in...
2008-06-29 18:21:49 UTC in Hunspell
-
File Added: csutil.cxx.diff2.
2008-06-29 06:07:16 UTC in Hunspell
-
mystrsep:
Minor code reduction, 1 less instruction in routine.
mystrdup:
Modified several instructions for less processing and less code.
mychomp:
Some mods for less processing.
myrevstrdup:
Similar reduction based on mystrdup.
fieldlen:
Only need to test "r" once, then reorganized based on likelyhood of which code (for *r) may be seen 1st (eg: least likely to see '\n' until end...
2008-06-29 06:05:54 UTC in Hunspell
-
File Added: unmunch.c.diff.
2008-06-24 07:17:05 UTC in Hunspell
-
File Added: munch.c.diff.
2008-06-24 07:16:12 UTC in Hunspell