aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2000-12-02 15:30:10 +0000
committerEli Zaretskii2000-12-02 15:30:10 +0000
commitd3e7e7cf2c868daaf915c9c10a8f57675d02dc56 (patch)
treed071799ad63f145b4325e175465328abf5631e7d
parent07eab3c32c8902f1f206946488af7b84d2e9243a (diff)
downloademacs-d3e7e7cf2c868daaf915c9c10a8f57675d02dc56.tar.gz
emacs-d3e7e7cf2c868daaf915c9c10a8f57675d02dc56.zip
(make-char): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/international/mule.el7
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index baab0b16a2f..ff8f53731fd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * internat/mule.el (make-char): Doc fix.
4
12000-12-02 Jason Rumney <jasonr@gnu.org> 52000-12-02 Jason Rumney <jasonr@gnu.org>
2 6
3 * term/w32-win.el (x-select-enable-clipboard): Customize (as per 7 * 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."
253 "Set CHARSET's property list to PLIST, and return PLIST." 253 "Set CHARSET's property list to PLIST, and return PLIST."
254 (aset (charset-info charset) 14 plist)) 254 (aset (charset-info charset) 14 plist))
255 255
256(defun make-char (charset &optional c1 c2) 256(defun make-char (charset &optional code1 code2)
257 "Return a character of CHARSET and position codes CODE1 and CODE2. 257 "Return a character of CHARSET whose position codes are CODE1 and CODE2.
258CODE1 and CODE2 are optional, but if you don't supply 258CODE1 and CODE2 are optional, but if you don't supply
259sufficient position codes, return a generic character which stands for 259sufficient position codes, return a generic character which stands for
260all characters or group of characters in the character set. 260all characters or group of characters in the character set.
261A generic character can be used to index a char table (e.g. syntax-table)." 261A generic character can be used to index a char table (e.g. syntax-table).
262If CODE1 or CODE2 are invalid (out of range), this function signals an error."
262 (make-char-internal (charset-id charset) c1 c2)) 263 (make-char-internal (charset-id charset) c1 c2))
263 264
264(put 'make-char 'byte-compile 265(put 'make-char 'byte-compile