diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ccl.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1105,7 +1105,7 @@ Return index number of the registered CCL program.") | |||
| 1105 | 1105 | ||
| 1106 | if (i == len) | 1106 | if (i == len) |
| 1107 | { | 1107 | { |
| 1108 | Lisp_Object new_table = Fmake_vector (len * 2, Qnil); | 1108 | Lisp_Object new_table = Fmake_vector (make_number (len * 2), Qnil); |
| 1109 | int j; | 1109 | int j; |
| 1110 | 1110 | ||
| 1111 | for (j = 0; j < len; j++) | 1111 | for (j = 0; j < len; j++) |
| @@ -1121,7 +1121,7 @@ Return index number of the registered CCL program.") | |||
| 1121 | syms_of_ccl () | 1121 | syms_of_ccl () |
| 1122 | { | 1122 | { |
| 1123 | staticpro (&Vccl_program_table); | 1123 | staticpro (&Vccl_program_table); |
| 1124 | Vccl_program_table = Fmake_vector (32, Qnil); | 1124 | Vccl_program_table = Fmake_vector (make_number (32), Qnil); |
| 1125 | 1125 | ||
| 1126 | DEFVAR_LISP ("font-ccl-encoder-alist", &Vfont_ccl_encoder_alist, | 1126 | DEFVAR_LISP ("font-ccl-encoder-alist", &Vfont_ccl_encoder_alist, |
| 1127 | "Alist of fontname patterns vs corresponding CCL program.\n\ | 1127 | "Alist of fontname patterns vs corresponding CCL program.\n\ |