| 3 | | ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 |
|---|
| | 3 | ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 |
|---|
| 286 | | (function |
|---|
| 287 | | (lambda (form) |
|---|
| 288 | | (let ((charset (nth 1 form))) |
|---|
| 289 | | (if (charset-quoted-standard-p charset) |
|---|
| 290 | | (byte-compile-normal-call |
|---|
| 291 | | (cons 'make-char-internal |
|---|
| 292 | | (cons (charset-id (nth 1 charset)) (nthcdr 2 form)))) |
|---|
| 293 | | (byte-compile-normal-call |
|---|
| 294 | | (cons 'make-char-internal |
|---|
| 295 | | (cons (list 'charset-id charset) (nthcdr 2 form))))))))) |
|---|
| | 286 | (lambda (form) |
|---|
| | 287 | (let ((charset (nth 1 form))) |
|---|
| | 288 | (byte-compile-normal-call |
|---|
| | 289 | (cons 'make-char-internal |
|---|
| | 290 | (cons (if (charset-quoted-standard-p charset) |
|---|
| | 291 | (charset-id (nth 1 charset)) |
|---|
| | 292 | (list 'charset-id charset)) |
|---|
| | 293 | (nthcdr 2 form))))))) |
|---|