Changeset ef4700c
- Timestamp:
- Apr 16, 2010, 6:04:05 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 75b0adb
- Parents:
- 6e58ff2
- git-author:
- Nelson Elhage <nelhage@mit.edu> (04/08/10 22:07:19)
- git-committer:
- Nelson Elhage <nelhage@mit.edu> (04/16/10 18:04:05)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
perl/lib/BarnOwl.pm
rb30c256 ref4700c 363 363 if ($str eq '') { 364 364 push @quoted, "''"; 365 } elsif ($str !~ /['" ]/) {365 } elsif ($str !~ /['" \n\t]/) { 366 366 push @quoted, "$str"; 367 367 } elsif ($str !~ /'/) { -
text.c
rf7cd7c9 ref4700c 271 271 if (strchr(line, '\'')) return("\""); 272 272 if (strchr(line, '"')) return("'"); 273 if (strc hr(line, ' ')) return("'");273 if (strcspn(line, "\n\t ") != strlen(line)) return("'"); 274 274 return(""); 275 275 }
Note: See TracChangeset
for help on using the changeset viewer.