*** empty log message ***
[m17n/m17n-db.git] / variable.mim
1 ;; variable.mim -- global variable definitions of input methods.
2 ;; Copyright (C) 2005
3 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
4 ;;   Registration Number H15PRO112
5
6 ;; This file is part of the m17n library.
7
8 ;; The m17n library is free software; you can redistribute it and/or
9 ;; modify it under the terms of the GNU Lesser General Public License
10 ;; as published by the Free Software Foundation; either version 2.1 of
11 ;; the License, or (at your option) any later version.
12
13 ;; The m17n library is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ;; Lesser General Public License for more details.
17
18 ;; You should have received a copy of the GNU Lesser General Public
19 ;; License along with the m17n library; if not, write to the Free
20 ;; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 ;; 02111-1307, USA.
22
23 (input-method t nil variable)
24
25 (description "Global variable definitions.
26 This is actually not an input method, but provides documents
27 and default values of global variables.  When an input method declares
28 to use a specific variable without supplying an initial value, it is
29 initialized to the value defined here.
30 ")
31
32 (variable
33  (candidates-group-size
34   "Maxmum number of candidates in a candidate group.
35 Value must be an integer.
36 If the value is not positive, number of candidates in a group is decided
37 by how candiates are grouped in an input method source file."
38   10)
39
40  (candidates-charset
41   "Character set to limit candidates.
42 Value must be a symbol representing a charater set, or nil.
43 If the value is not nil, a candidate containing a character not belonging
44 to the specified character set is ignored."
45   nil)
46  )
47
48 ;; Local Variables:
49 ;; mode: lisp
50 ;; coding: utf-8
51 ;; End: