From: Eli Zaretskii Date: Sat, 2 Dec 2000 15:30:10 +0000 (+0000) Subject: (make-char): Doc fix. X-Git-Tag: emacs-pretest-21.0.93~290 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d3e7e7cf2c868daaf915c9c10a8f57675d02dc56;p=emacs.git (make-char): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index baab0b16a2f..ff8f53731fd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2000-12-02 Eli Zaretskii + + * internat/mule.el (make-char): Doc fix. + 2000-12-02 Jason Rumney * term/w32-win.el (x-select-enable-clipboard): Customize (as per diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 5255942da7d..462329d8772 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -253,12 +253,13 @@ See the function `charset-info' for more detail." "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