Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Side by Side Diff: third_party/hunspell/src/parsers/textparser.cxx

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/hunspell/src/parsers/textparser.hxx ('k') | third_party/hunspell/tests/1463589.aff » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include <cstdlib> 1 #include <cstdlib>
2 #include <cstring> 2 #include <cstring>
3 #include <cstdio> 3 #include <cstdio>
4 #include <ctype.h> 4 #include <ctype.h>
5 5
6 #include "../hunspell/csutil.hxx" 6 #include "../hunspell/csutil.hxx"
7 #include "textparser.hxx" 7 #include "textparser.hxx"
8 8
9 #ifndef W32 9 #ifndef W32
10 using namespace std; 10 using namespace std;
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 if (!t[0]) { 282 if (!t[0]) {
283 free(t); 283 free(t);
284 return NULL; 284 return NULL;
285 } 285 }
286 } 286 }
287 return t; 287 return t;
288 } 288 }
289 fprintf(stderr,"Error - Insufficient Memory\n"); 289 fprintf(stderr,"Error - Insufficient Memory\n");
290 return NULL; 290 return NULL;
291 } 291 }
OLDNEW
« no previous file with comments | « third_party/hunspell/src/parsers/textparser.hxx ('k') | third_party/hunspell/tests/1463589.aff » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698