Juan Vallés 36d8fa12d3 Improve first character check in CSS identifiers
A CSS identifier can't start with a digit, so when a folder name does,
a '_' character is appended at the beginning of its CSS identifier.

The check for this first character used the `isdigit()` function, which
takes a `char` argument, while `[self objectAtIndex: 0]` returns a
`unichar`, i.e. a 16-bit unsigned integer. This caused some non-digit
characters to pass this check (e.g. Chinese characters), ending up with
an underscore at the beginning of the folder name.
2015-09-10 10:24:50 +02:00
2015-04-27 13:59:05 -04:00
2015-01-22 13:31:31 -05:00
2015-09-08 15:39:59 +02:00
2015-05-13 10:55:17 -04:00
2015-06-01 08:36:02 -04:00
2014-12-16 12:36:08 -05:00
2015-06-01 08:36:02 -04:00
S
Description
No description provided
224 MiB
Languages
Objective-C 67.8%
JavaScript 14.7%
Rich Text Format 9.7%
SCSS 2.2%
C 1.5%
Other 4%