# HG changeset patch # User Eli Zaretskii # Date 975770872 0 # Node ID 9cbbc1edaba04ca1db54914a1b81a728fb2f6b30 # Parent 1c497211a58d3a68eab9d4789ce989cc1ff81b6f (make-char): Doc fix. diff -r 1c497211a58d -r 9cbbc1edaba0 lisp/international/mule.el --- a/lisp/international/mule.el Sat Dec 02 15:26:21 2000 +0000 +++ b/lisp/international/mule.el Sat Dec 02 15:27:52 2000 +0000 @@ -253,12 +253,13 @@ "Set CHARSET's property list to PLIST, and return PLIST." (aset (charset-info charset) 14 plist)) -(defun make-char (charset &optional c1 c2) - "Return a character of CHARSET and position codes CODE1 and CODE2. +(defun make-char (charset &optional code1 code2) + "Return a character of CHARSET whose position codes are CODE1 and CODE2. CODE1 and CODE2 are optional, but if you don't supply sufficient position codes, return a generic character which stands for all characters or group of characters in the character set. -A generic character can be used to index a char table (e.g. syntax-table)." +A generic character can be used to index a char table (e.g. syntax-table). +If CODE1 or CODE2 are invalid (out of range), this function signals an error." (make-char-internal (charset-id charset) c1 c2)) (put 'make-char 'byte-compile