1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/textproc/ispell/files/NO.patch
Jean-Marc Zucconi bbfb2cdea9 Build british dictionary with ISPELL_BRITISH=yes instead of `make british'.
Cleanups from PR ports/16450
Add norvegian dictionary (ports/16533)
Don't create a dummy file in ${WRKSRC}. It is only valid when emacs is a link
to xemacs.

PR:		ports/16450, ports/16533
Submitted by:	Alexander Langer <alex@big.endian.de>
Reviewed by:	jmz
2000-02-11 17:08:00 +00:00

37 lines
1.0 KiB
Diff

*** inorsk/parse.y.org Sun Feb 6 19:41:49 2000
--- inorsk/parse.y Sun Feb 6 19:42:58 2000
***************
*** 870,876 ****
flagbit = toupper (flagbit);
#endif /* MASKBITS */
#if MASKBITS <= 64
! if (!isalpha (flagbit))
yyerror (PARSE_Y_BAD_FLAG);
#endif /* MASKBITS */
flagbit = CHARTOBIT (flagbit);
--- 870,876 ----
flagbit = toupper (flagbit);
#endif /* MASKBITS */
#if MASKBITS <= 64
! if (flagbit < 'A' || flagbit > 'z')
yyerror (PARSE_Y_BAD_FLAG);
#endif /* MASKBITS */
flagbit = CHARTOBIT (flagbit);
***************
*** 902,908 ****
flagbit = toupper (flagbit);
#endif /* MASKBITS */
#if MASKBITS <= 64
! if (!isalpha (flagbit))
yyerror (PARSE_Y_BAD_FLAG);
#endif /* MASKBITS */
flagbit = CHARTOBIT (flagbit);
--- 902,908 ----
flagbit = toupper (flagbit);
#endif /* MASKBITS */
#if MASKBITS <= 64
! if (flagbit < 'A' || flagbit > 'z')
yyerror (PARSE_Y_BAD_FLAG);
#endif /* MASKBITS */
flagbit = CHARTOBIT (flagbit);