Revision: 6324 Author: ek.kato Date: Tue Apr 13 00:03:37 2010 Log: * scm/wnn.scm (wnn-context) * scm/social-ime.scm (social-ime-context) * scm/canna.scm (canna-context) * scm/ajax-ime.scm (ajax-ime-context) * scm/yahoo-jp.scm (yahoo-jp-context) - Fix to initialize prediction-ctx with '().
http://code.google.com/p/uim/source/detail?r=6324 Modified: /trunk/scm/ajax-ime.scm /trunk/scm/canna.scm /trunk/scm/social-ime.scm /trunk/scm/wnn.scm /trunk/scm/yahoo-jp.scm ======================================= --- /trunk/scm/ajax-ime.scm Sun Apr 4 20:35:54 2010 +++ /trunk/scm/ajax-ime.scm Tue Apr 13 00:03:37 2010 @@ -407,7 +407,7 @@ (list 'commit-raw #t) (list 'input-rule ajax-ime-input-rule-roma) (list 'raw-ustr #f) - (list 'prediction-ctx #f) + (list 'prediction-ctx '()) (list 'prediction-word '()) (list 'prediction-candidates '()) (list 'prediction-appendix '()) ======================================= --- /trunk/scm/canna.scm Sun Apr 4 20:35:54 2010 +++ /trunk/scm/canna.scm Tue Apr 13 00:03:37 2010 @@ -281,7 +281,7 @@ (list 'commit-raw #t) (list 'input-rule canna-input-rule-roma) (list 'raw-ustr #f) - (list 'prediction-ctx #f) + (list 'prediction-ctx '()) (list 'prediction-word '()) (list 'prediction-candidates '()) (list 'prediction-appendix '()) ======================================= --- /trunk/scm/social-ime.scm Sun Apr 4 20:35:54 2010 +++ /trunk/scm/social-ime.scm Tue Apr 13 00:03:37 2010 @@ -497,7 +497,7 @@ (list 'segments #f) ;; ustr of candidate indices (list 'candidate-window #f) (list 'candidate-op-count 0) - (list 'prediction-ctx #f) + (list 'prediction-ctx '()) (list 'prediction-window #f) (list 'prediction-index #f) (list 'prediction-cache '()) ======================================= --- /trunk/scm/wnn.scm Sun Apr 4 20:35:54 2010 +++ /trunk/scm/wnn.scm Tue Apr 13 00:03:37 2010 @@ -346,7 +346,7 @@ (list 'commit-raw #t) (list 'input-rule wnn-input-rule-roma) (list 'raw-ustr #f) - (list 'prediction-ctx #f) + (list 'prediction-ctx '()) (list 'prediction-word '()) (list 'prediction-candidates '()) (list 'prediction-appendix '()) ======================================= --- /trunk/scm/yahoo-jp.scm Sun Apr 4 20:35:54 2010 +++ /trunk/scm/yahoo-jp.scm Tue Apr 13 00:03:37 2010 @@ -522,7 +522,7 @@ (list 'segments #f) ;; ustr of candidate indices (list 'candidate-window #f) (list 'candidate-op-count 0) - (list 'prediction-ctx #f) + (list 'prediction-ctx '()) (list 'prediction-window #f) (list 'prediction-index #f) (list 'prediction-cache '()) -- To unsubscribe, reply using "remove me" as the subject.
