diff options
| author | Eli Zaretskii | 2000-12-02 16:06:04 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-12-02 16:06:04 +0000 |
| commit | 636799f25d313df8886296f30337d5f026653aa2 (patch) | |
| tree | 2b165d08b8388f2001beb228cf996e91af97987b | |
| parent | 79f9f6554d99ef38c1e5dc5b314783ab7deb9b7d (diff) | |
| download | emacs-636799f25d313df8886296f30337d5f026653aa2.tar.gz emacs-636799f25d313df8886296f30337d5f026653aa2.zip | |
(make-char): Fix last change.
| -rw-r--r-- | lisp/international/mule.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 462329d8772..9cf3be29566 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -260,7 +260,7 @@ sufficient position codes, return a generic character which stands for | |||
| 260 | all characters or group of characters in the character set. | 260 | all characters or group of characters in the character set. |
| 261 | A generic character can be used to index a char table (e.g. syntax-table). | 261 | A generic character can be used to index a char table (e.g. syntax-table). |
| 262 | If CODE1 or CODE2 are invalid (out of range), this function signals an error." | 262 | If CODE1 or CODE2 are invalid (out of range), this function signals an error." |
| 263 | (make-char-internal (charset-id charset) c1 c2)) | 263 | (make-char-internal (charset-id charset) code1 code2)) |
| 264 | 264 | ||
| 265 | (put 'make-char 'byte-compile | 265 | (put 'make-char 'byte-compile |
| 266 | (function | 266 | (function |