> 1) Should deroff -w interpret curly quotes (“”)? Right now it doesn't, > so spell is treating any words with either character as spelling errors.
; 9diff deroff.c
/n/sources/plan9//sys/src/cmd/deroff.c:963,968 - deroff.c:963,970
return chars[c];
switch(c){
case 0x2013: case 0x2014: /* en dash, em dash */
+ case L'“':
+ case L'”':
return SPECIAL;
}
return EXTENDED;
- erik
