diff options
| author | Kenichi Handa | 2000-12-21 00:06:23 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-12-21 00:06:23 +0000 |
| commit | 9ff05eaec06cb34a413111fc41b1b8f2d6661374 (patch) | |
| tree | e9a058beb4634b925dca035cdbfc816ae4e59bfa | |
| parent | 774ba8c93df98b56fd1f6e788e3ac0e4a8c2266a (diff) | |
| download | emacs-9ff05eaec06cb34a413111fc41b1b8f2d6661374.tar.gz emacs-9ff05eaec06cb34a413111fc41b1b8f2d6661374.zip | |
(make-char): Docstring adjusted for the change of make-char-internal.
| -rw-r--r-- | lisp/international/mule.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 772a89566df..89f2e02727a 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -259,6 +259,12 @@ CODE1 and CODE2 are optional, but if you don't supply | |||
| 259 | sufficient position codes, return a generic character which stands for | 259 | 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 | |||
| 263 | Such character sets as ascii, eight-bit-control, and eight-bit-graphic | ||
| 264 | don't have corresponding generic characters. If CHARSET is one of | ||
| 265 | them and you don't supply CODE1, return the character of the smallest | ||
| 266 | code in CHARSET. | ||
| 267 | |||
| 262 | If CODE1 or CODE2 are invalid (out of range), this function signals an error." | 268 | If CODE1 or CODE2 are invalid (out of range), this function signals an error." |
| 263 | (make-char-internal (charset-id charset) code1 code2)) | 269 | (make-char-internal (charset-id charset) code1 code2)) |
| 264 | 270 | ||