[uim-commit] r1385 - trunk/scm

ekato at freedesktop.org ekato at freedesktop.org
Fri Sep 2 19:09:44 EST 2005


Author: ekato
Date: 2005-09-02 02:09:41 -0700 (Fri, 02 Sep 2005)
New Revision: 1385

Modified:
   trunk/scm/prime.scm
Log:
* scm/prime.scm : Replace t with else.  Also replace some #t in
  cond phrases with else.


Modified: trunk/scm/prime.scm
===================================================================
--- trunk/scm/prime.scm	2005-09-02 08:19:43 UTC (rev 1384)
+++ trunk/scm/prime.scm	2005-09-02 09:09:41 UTC (rev 1385)
@@ -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