[uim-commit] r1292 - trunk/scm

ekato at freedesktop.org ekato at freedesktop.org
Tue Aug 23 06:43:34 PDT 2005


Author: ekato
Date: 2005-08-23 06:43:31 -0700 (Tue, 23 Aug 2005)
New Revision: 1292

Modified:
   trunk/scm/skk-custom.scm
Log:
* scm/skk-custom.scm : Fix wrong use of '=' for comparing symbols.


Modified: trunk/scm/skk-custom.scm
===================================================================
--- trunk/scm/skk-custom.scm	2005-08-23 10:51:56 UTC (rev 1291)
+++ trunk/scm/skk-custom.scm	2005-08-23 13:43:31 UTC (rev 1292)
@@ -139,10 +139,10 @@
 		 (lambda ()
 		   (if (not skk-use-manual-candwin-setting?)
 		       (cond
-			((= skk-candidate-selection-style 'ddskk-like)
+			((eq? skk-candidate-selection-style 'ddskk-like)
 			    (custom-set-value! 'skk-candidate-op-count 5)
 			    (custom-set-value! 'skk-nr-candidate-max 7))
-		        ((= skk-candidate-selection-style 'uim)
+		        ((eq? skk-candidate-selection-style 'uim)
 			    (custom-set-value! 'skk-candidate-op-count 2)
 			    (custom-set-value! 'skk-nr-candidate-max 10))))))
 



More information about the uim-commit mailing list