[uim-commit] r1386 - branches/r5rs/scm
ekato at freedesktop.org
ekato at freedesktop.org
Fri Sep 2 19:10:33 EST 2005
Author: ekato
Date: 2005-09-02 02:10:31 -0700 (Fri, 02 Sep 2005)
New Revision: 1386
Modified:
branches/r5rs/scm/prime.scm
Log:
* scm/prime.scm : Port r1385 from trunk.
Modified: branches/r5rs/scm/prime.scm
===================================================================
--- branches/r5rs/scm/prime.scm 2005-09-02 09:09:41 UTC (rev 1385)
+++ branches/r5rs/scm/prime.scm 2005-09-02 09:10:31 UTC (rev 1386)
@@ -958,7 +958,7 @@
(prime-util-string-split (cdr result) "\t"))
((string=? result-type "boolean")
(string=? (nth 1 result) "true"))
- (t
+ (else
'unknown))
)))
@@ -1311,7 +1311,7 @@
((eq? (prime-context-language context) 'Japanese)
(let ((space (if (eq? prime-custom-japanese-space 'wide) "¡¡" " ")))
(prime-commit-without-learning context space)))
- (t
+ (else
(prime-commit-without-learning context " ")))))
(define prime-command-fund-altspace
@@ -1320,7 +1320,7 @@
((eq? (prime-context-language context) 'Japanese)
(let ((space (if (eq? prime-custom-japanese-space 'wide) " " "¡¡")))
(prime-commit-without-learning context space)))
- (t
+ (else
(prime-commit-without-learning context " ")))))
(define prime-command-fund-commit-ja-direct
@@ -1426,7 +1426,7 @@
(prime-commit-raw context))
;; call this command recursively.
- (#t
+ (else
(prime-command-app-mode-internal context
key key-state (cdr key-list)))))))
@@ -1734,7 +1734,7 @@
((null? session)
#f) ;; Do nothing.
- (#t
+ (else
;; Store the current preedition into the context
(prime-context-set-preedit-line!
context
@@ -1751,7 +1751,7 @@
((null? session)
#f) ;; Do nothing.
- (#t
+ (else
(prime-update-prediction context)
(prime-update-candidate-window context)
(prime-update-history context)
More information about the uim-commit
mailing list