# HG changeset patch # User daiki # Date 1018199450 0 # Node ID 0f42d0a176671633f962b0450fe5c2f6033a9c57 # Parent 285f13b079f352f81b2537b96702bd5bccd431c4 [xemacs-hg @ 2002-04-07 17:10:48 by daiki] * mule/japanese.el: Don't quote function expressions listed as `native-coding-system'. * mule/chinese.el: Likewise. diff -r 285f13b079f3 -r 0f42d0a17667 lisp/ChangeLog --- a/lisp/ChangeLog Sun Apr 07 16:01:32 2002 +0000 +++ b/lisp/ChangeLog Sun Apr 07 17:10:50 2002 +0000 @@ -1,3 +1,9 @@ +2002-03-19 Daiki Ueno + + * mule/japanese.el: Don't quote function expressions listed as + `native-coding-system'. + * mule/chinese.el: Likewise. + 2002-04-05 Stephen J. Turnbull * XEmacs 21.5.6 "bok choi" is released. diff -r 285f13b079f3 -r 0f42d0a17667 lisp/mule/chinese.el --- a/lisp/mule/chinese.el Sun Apr 07 16:01:32 2002 +0000 +++ b/lisp/mule/chinese.el Sun Apr 07 17:10:50 2002 +0000 @@ -326,7 +326,7 @@ (cygwin-locale "zh") (locale "zh_CN.eucCN" "zh_CN.EUC" "zh_CN" "chinese-s" "zh" - #'(lambda (arg) + (lambda (arg) (and arg (let ((case-fold-search t)) (string-match "^zh_.*.GB.*" arg))))) (mswindows-locale ("CHINESE" . "CHINESE_SIMPLIFIED")) @@ -399,7 +399,7 @@ (cygwin-locale "zh_TW") (locale "zh_TW.Big5" "zh_TW.big5" "zh_CN.big5" "zh_TW" "chinese-t" - #'(lambda (arg) + (lambda (arg) (and arg (let ((case-fold-search t)) (string-match "^zh_.*.BIG5.*" arg))))) (mswindows-locale ("CHINESE" . "CHINESE_TRADITIONAL")) diff -r 285f13b079f3 -r 0f42d0a17667 lisp/mule/japanese.el --- a/lisp/mule/japanese.el Sun Apr 07 16:01:32 2002 +0000 +++ b/lisp/mule/japanese.el Sun Apr 07 17:10:50 2002 +0000 @@ -499,7 +499,7 @@ (native-coding-system ;; first, see if an explicit encoding was given. - #'(lambda (locale) + (lambda (locale) (let ((case-fold-search t)) (cond ;; many unix versions @@ -521,21 +521,21 @@ ))) ;; aix (CJKV p. 465) - #'(lambda (locale) + (lambda (locale) (when (eq system-type 'aix) (cond ((string-match "^Ja_JP" locale) 'shift-jis) ((string-match "^ja_JP" locale) 'euc-jp)))) ;; other X11R6 locale.alias - #'(lambda (locale) + (lambda (locale) (cond ((string-match "^Jp_JP" locale) 'euc-jp) ((and (eq system-type 'hpux) (eq locale "japanese")) 'shift-jis))) ;; fallback - 'euc-jp) + euc-jp) ;; (input-method . "japanese") (features japan-util)