aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule.el18
2 files changed, 16 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 050cd6148cd..7436e24a099 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12000-12-06 Dave Love <fx@gnu.org> 12000-12-06 Dave Love <fx@gnu.org>
2 2
3 * international/mule.el (decode-char, encode-char): Doc fix.
4 (auto-coding-alist): Customize.
5
6 * files.el (load-file): Fix change of 2000-03-12.
7
3 * wid-edit.el (widget-text-keymap): Doc fix. 8 * wid-edit.el (widget-text-keymap): Doc fix.
4 9
52000-12-06 Andrew Innes <andrewi@gnu.org> 102000-12-06 Andrew Innes <andrewi@gnu.org>
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index 9cf3be29566..83774ce4ef4 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -292,8 +292,8 @@ See also the documentation of make-char."
292(defun decode-char (ccs code-point &optional restriction) 292(defun decode-char (ccs code-point &optional restriction)
293 "Return character specified by coded character set CCS and CODE-POINT in it. 293 "Return character specified by coded character set CCS and CODE-POINT in it.
294Return nil if such a character is not supported. 294Return nil if such a character is not supported.
295Currently, supported coded character set is `ucs' (ISO/IEC 295Currently the only supported coded character set is `ucs' (ISO/IEC
29610646: Universal Multi-Octet Coded Character Set) only. 29610646: Universal Multi-Octet Coded Character Set).
297 297
298Optional argument RESTRICTION specifies a way to map the pair of CCS 298Optional argument RESTRICTION specifies a way to map the pair of CCS
299and CODE-POINT to a chracter. Currently not supported and just ignored." 299and CODE-POINT to a chracter. Currently not supported and just ignored."
@@ -319,8 +319,8 @@ and CODE-POINT to a chracter. Currently not supported and just ignored."
319(defun encode-char (char ccs &optional restriction) 319(defun encode-char (char ccs &optional restriction)
320 "Return code-point in coded character set CCS that corresponds to CHAR. 320 "Return code-point in coded character set CCS that corresponds to CHAR.
321Return nil if CHAR is not included in CCS. 321Return nil if CHAR is not included in CCS.
322Currently, supported coded character set is `ucs' (ISO/IEC 322Currently the only supported coded character set is `ucs' (ISO/IEC
32310646: Universal Multi-Octet Coded Character Set) only. 32310646: Universal Multi-Octet Coded Character Set).
324 324
325CHAR should be in one of these charsets: 325CHAR should be in one of these charsets:
326 ascii, latin-iso8859-1, mule-unicode-0100-24ff, mule-unicode-2500-33ff, 326 ascii, latin-iso8859-1, mule-unicode-0100-24ff, mule-unicode-2500-33ff,
@@ -347,7 +347,7 @@ code-point in CCS. Currently not supported and just ignored."
347 (- (nth 2 split) 32))))))))) 347 (- (nth 2 split) 32)))))))))
348 348
349 349
350;; Coding system staffs 350;; Coding system stuff
351 351
352;; Coding system is a symbol that has the property `coding-system'. 352;; Coding system is a symbol that has the property `coding-system'.
353;; 353;;
@@ -1080,7 +1080,7 @@ LIST is a list of coding categories ordered by priority."
1080 1080
1081;;; FILE I/O 1081;;; FILE I/O
1082 1082
1083(defvar auto-coding-alist 1083(defcustom auto-coding-alist
1084 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion) 1084 '(("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\|tar\\|tgz\\)\\'" . no-conversion)
1085 ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\|TAR\\|TGZ\\)\\'" . no-conversion)) 1085 ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\|TAR\\|TGZ\\)\\'" . no-conversion))
1086 "Alist of filename patterns vs corresponding coding systems. 1086 "Alist of filename patterns vs corresponding coding systems.
@@ -1089,7 +1089,11 @@ A file whose name matches REGEXP is decoded by CODING-SYSTEM on reading.
1089 1089
1090The settings in this alist take priority over `coding:' tags 1090The settings in this alist take priority over `coding:' tags
1091in the file (see the function `set-auto-coding') 1091in the file (see the function `set-auto-coding')
1092and the contents of `file-coding-system-alist'.") 1092and the contents of `file-coding-system-alist'."
1093 :group 'files
1094 :group 'mule
1095 :type '(repeat (cons (regexp :tag "File name regexp")
1096 (symbol :tag "Coding system"))))
1093 1097
1094(defvar set-auto-coding-for-load nil 1098(defvar set-auto-coding-for-load nil
1095 "Non-nil means look for `load-coding' property instead of `coding'. 1099 "Non-nil means look for `load-coding' property instead of `coding'.