Chromium Code Reviews

Unified Diff: chrome/third_party/hunspell/src/hunspell/baseaffix.hxx

Issue 155841: Update Hunspell to the latest stable version to use the latest dictionary for... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/third_party/hunspell/src/hunspell/baseaffix.hxx
===================================================================
--- chrome/third_party/hunspell/src/hunspell/baseaffix.hxx (revision 21721)
+++ chrome/third_party/hunspell/src/hunspell/baseaffix.hxx (working copy)
@@ -6,26 +6,23 @@
public:
protected:
- char * appnd;
- char * strip;
- unsigned char appndl;
- unsigned char stripl;
- char numconds;
- char opts;
- unsigned short aflag;
- union {
- char base[SETSIZE];
- struct {
- char ascii[SETSIZE/2];
- char neg[8];
- char all[8];
- w_char * wchars[8];
- int wlen[8];
- } utf8;
- } conds;
- char * morphcode;
- unsigned short * contclass;
- short contclasslen;
+ char * appnd;
+ char * strip;
+ unsigned char appndl;
+ unsigned char stripl;
+ char numconds;
+ char opts;
+ unsigned short aflag;
+ union {
+ char conds[MAXCONDLEN];
+ struct {
+ char conds1[MAXCONDLEN_1];
+ char * conds2;
+ } l;
+ } c;
+ char * morphcode;
+ unsigned short * contclass;
+ short contclasslen;
};
#endif
Property changes on: chrome\third_party\hunspell\src\hunspell\baseaffix.hxx
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/third_party/hunspell/src/hunspell/atypes.hxx ('k') | chrome/third_party/hunspell/src/hunspell/csutil.hxx » ('j') | no next file with comments »

Powered by Google App Engine