|
From: <fri...@us...> - 2009-01-15 14:33:51
|
Revision: 9661
http://zaf.svn.sourceforge.net/zaf/?rev=9661&view=rev
Author: friedelwolff
Date: 2009-01-15 14:33:45 +0000 (Thu, 15 Jan 2009)
Log Message:
-----------
Rename N->n M-m (on the way to a naming convention where capital letters are public flags and lower case letters are private
Modified Paths:
--------------
trunk/dict/zu/hunspell/zu_aff.py
Modified: trunk/dict/zu/hunspell/zu_aff.py
===================================================================
--- trunk/dict/zu/hunspell/zu_aff.py 2009-01-06 08:51:14 UTC (rev 9660)
+++ trunk/dict/zu/hunspell/zu_aff.py 2009-01-15 14:33:45 UTC (rev 9661)
@@ -36,6 +36,7 @@
#TODO: monosyllabic verbs
#TODO: statives
#TODO: auxilary verbs
+#TODO: consider avoiding illegal reflexives
from hunspell_format import *
import re
@@ -381,10 +382,10 @@
question = aff.add_group(suffix=True, flag="I")
# This group contains rules for forming question words
- locative = aff.add_group(suffix=False, flag="N")
+ locative = aff.add_group(suffix=False, flag="n")
# This group will contain rules for locative prefixes
- locative_sfx = aff.add_group(suffix=True, flag="M")
+ locative_sfx = aff.add_group(suffix=True, flag="m")
# This group will contain rules for locative suffixes
for morpheme in subject_morphemes:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|