diff options
| author | Kenichi Handa | 1999-01-08 04:19:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-01-08 04:19:24 +0000 |
| commit | a9fb0b585983dcda21a4aaff82f26ce42fbddbb0 (patch) | |
| tree | d2e73a9c03af3e7b3f21cd7d78422b130914613e | |
| parent | dd9383bc548d35f725dcfc773d3b989fa32a8627 (diff) | |
| download | emacs-a9fb0b585983dcda21a4aaff82f26ce42fbddbb0.tar.gz emacs-a9fb0b585983dcda21a4aaff82f26ce42fbddbb0.zip | |
(make-char): Doc-string modified.
| -rw-r--r-- | lisp/international/mule.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 02f2746ef97..c7800d85f01 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -247,10 +247,10 @@ See the function `charset-info' for more detail." | |||
| 247 | (aset (charset-info charset) 14 plist)) | 247 | (aset (charset-info charset) 14 plist)) |
| 248 | 248 | ||
| 249 | (defun make-char (charset &optional c1 c2) | 249 | (defun make-char (charset &optional c1 c2) |
| 250 | "Return a character of CHARSET and position-codes CODE1 and CODE2. | 250 | "Return a character of CHARSET and position codes CODE1 and CODE2. |
| 251 | CODE1 and CODE2 are optional, but if you don't supply | 251 | CODE1 and CODE2 are optional, but if you don't supply |
| 252 | sufficient position-codes, return a generic character which stands for | 252 | sufficient position codes, return a generic character which stands for |
| 253 | all characters or group of characters in the character sets. | 253 | all characters or group of characters in the character set. |
| 254 | A generic character can be used to index a char table (e.g. syntax-table)." | 254 | A generic character can be used to index a char table (e.g. syntax-table)." |
| 255 | (make-char-internal (charset-id charset) c1 c2)) | 255 | (make-char-internal (charset-id charset) c1 c2)) |
| 256 | 256 | ||