~ubuntu-branches/ubuntu/hoary/malaga/hoary

« back to all changes in this revision

Viewing changes to grammars/german/german.mor

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2004-08-20 12:58:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040820125850-rx9s8bn0ep8jgist
Tags: 6.13-4
This should have been urgency=high, because it is an important and
long-delayed accomodation to new upstream with a bajillion bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# morphology combination rules for german
 
1
# Morphology combination rules for german.
 
2
# Copyright (C) 2004 Bjoern Beutel.
2
3
 
3
4
initial [], rules morpho_rule;
4
5
  
5
 
combi_rule morpho_rule ($anything, $word):
6
 
  result $word, accept;
7
 
end;
8
 
 
9
 
# end of file =================================================================
 
6
combi_rule morpho_rule( $state, $link ):
 
7
  result $link, rules end_check;
 
8
end;
 
9
 
 
10
end_rule end_check( $state, $following ):
 
11
  ? $following matches "[\\.,\\?]?( .*)?";
 
12
  result $state, accept;
 
13
end;
 
14
 
 
15
# End of file =================================================================