diff options
| author | Richard M. Stallman | 1997-07-12 06:46:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-12 06:46:21 +0000 |
| commit | 6703ac4f59e2efcc2a05a721dc25839ca313dd15 (patch) | |
| tree | aae071546ca06e14eedcee8db5ef199662db15ca /src | |
| parent | cac557491c0da35614534e3cb9623888f8f61b97 (diff) | |
| download | emacs-6703ac4f59e2efcc2a05a721dc25839ca313dd15.tar.gz emacs-6703ac4f59e2efcc2a05a721dc25839ca313dd15.zip | |
(Fregister_ccl_program): Convert Fmake_vector argument to Lisp_Integer.
(syms_of_ccl): Likewise.
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\ |