[uim-commit] r180 - trunk/uim
yamaken@freedesktop.org
yamaken@freedesktop.org
Sat Jan 8 23:49:23 PST 2005
Author: yamaken
Date: 2005-01-08 23:49:20 -0800 (Sat, 08 Jan 2005)
New Revision: 180
Modified:
trunk/uim/uim-custom.c
Log:
* uim/uim-custom.c
- (uim_custom_type, uim_custom_choice_get): Follow the renaming of previous
commit of 'symbol' -> 'choice'
Modified: trunk/uim/uim-custom.c
===================================================================
--- trunk/uim/uim-custom.c 2005-01-09 07:45:20 UTC (rev 179)
+++ trunk/uim/uim-custom.c 2005-01-09 07:49:20 UTC (rev 180)
@@ -158,7 +158,7 @@
return UCustom_Str;
} else if (uim_custom_type_eq(custom_sym, "pathname")) {
return UCustom_Pathname;
- } else if (uim_custom_type_eq(custom_sym, "symbol")) {
+ } else if (uim_custom_type_eq(custom_sym, "choice")) {
return UCustom_Choice;
} else if (uim_custom_type_eq(custom_sym, "ordered-list")) {
return UCustom_OrderedList;
@@ -215,12 +215,12 @@
c_choice->symbol = strdup(choice_sym);
- UIM_EVAL_FSTRING2(NULL, "(custom-symbol-label '%s '%s)",
+ UIM_EVAL_FSTRING2(NULL, "(custom-choice-label '%s '%s)",
custom_sym, choice_sym);
return_val = uim_scm_return_value();
c_choice->label = uim_scm_c_str(return_val);
- UIM_EVAL_FSTRING2(NULL, "(custom-symbol-desc '%s '%s)",
+ UIM_EVAL_FSTRING2(NULL, "(custom-choice-desc '%s '%s)",
custom_sym, choice_sym);
return_val = uim_scm_return_value();
c_choice->desc = uim_scm_c_str(return_val);
More information about the Uim-commit
mailing list