From: akr Date: Thu, 11 Feb 1999 08:47:33 +0000 (+0000) Subject: * README.en, README.ja, pccl.el: pccl does not support Mule 1.x. X-Git-Tag: apel-mcs-2-9_12_2~21 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b41dc5b2082c4f44fe37a5c522c93a739b84242b;p=elisp%2Fapel.git * README.en, README.ja, pccl.el: pccl does not support Mule 1.x. * pccl-20.el: Update broken facility message with Emacs version it fixes. --- diff --git a/README.en b/README.en index cede2ed..c4447ea 100644 --- a/README.en +++ b/README.en @@ -38,7 +38,7 @@ What's APEL? broken.el --- provide information of broken facilities of Emacs. pccl.el --- utility to write portable CCL program - pccl-om.el --- for MULE 1.*, 2.* + pccl-om.el --- for MULE 2.* pccl-20.el --- for Emacs 20/XEmacs-21-MULE alist.el: utility for Association-list diff --git a/README.ja b/README.ja index 510557e..0fec542 100644 --- a/README.ja +++ b/README.ja @@ -38,7 +38,7 @@ APEL とは? broken.el --- Emacs の壊れている機能の情報を提供する pccl.el --- 移植可能な CCL プログラムを書くためのユーティリティー - pccl-om.el --- MULE 1.*, 2.* 用 + pccl-om.el --- MULE 2.* 用 pccl-20.el --- Emacs 20/XEmacs-21-MULE 用 alist.el: 連想リストのためのユーティリティー diff --git a/pccl-20.el b/pccl-20.el index ea672f3..3782b7c 100644 --- a/pccl-20.el +++ b/pccl-20.el @@ -114,19 +114,19 @@ If CCL-PROG is symbol, it is dereferenced. ) (broken-facility ccl-execute-eof-block-on-encoding-null - "Emacs forgets executing CCL_EOF_BLOCK with encoding on empty input." + "Emacs forgets executing CCL_EOF_BLOCK with encoding on empty input. (Fixed on Emacs 20.4)" (equal (encode-coding-string "" 'test-ccl-eof-block-cs) "[EOF]")) (broken-facility ccl-execute-eof-block-on-encoding-some - "Emacs forgets executing CCL_EOF_BLOCK with encoding on non-empty input." + "Emacs forgets executing CCL_EOF_BLOCK with encoding on non-empty input. (Fixed on Emacs 20.3)" (equal (encode-coding-string "a" 'test-ccl-eof-block-cs) "a[EOF]")) (broken-facility ccl-execute-eof-block-on-decoding-null - "Emacs forgets executing CCL_EOF_BLOCK with decoding on empty input." + "Emacs forgets executing CCL_EOF_BLOCK with decoding on empty input. (Fixed on Emacs 20.4)" (equal (decode-coding-string "" 'test-ccl-eof-block-cs) "[EOF]")) (broken-facility ccl-execute-eof-block-on-decoding-some - "Emacs forgets executing CCL_EOF_BLOCK with decoding on non-empty input." + "Emacs forgets executing CCL_EOF_BLOCK with decoding on non-empty input. (Fixed on Emacs 20.4)" (equal (decode-coding-string "a" 'test-ccl-eof-block-cs) "a[EOF]")) (broken-facility ccl-execute-eof-block-on-encoding diff --git a/pccl.el b/pccl.el index b7ba56f..69c89ee 100644 --- a/pccl.el +++ b/pccl.el @@ -1,4 +1,4 @@ -;;; pccl.el --- Portable CCL utility for Mule 1.* and Mule 2.* +;;; pccl.el --- Portable CCL utility for Mule 2.* ;; Copyright (C) 1998 Free Software Foundation, Inc. @@ -29,11 +29,11 @@ ;; The condition for non-XEmacs mule t may be wrong. ;; But I don't know exact version which introduce CCL on mule. (broken-facility ccl-usable - "Emacs has CCL." + "Emacs has not CCL." (and (featurep 'mule) (if (featurep 'xemacs) (>= emacs-major-version 21) - t))) + (>= emacs-major-version 19)))) (unless-broken ccl-usable (require 'ccl) @@ -42,12 +42,12 @@ (if (featurep 'mule) (if (featurep 'xemacs) (if (>= emacs-major-version 21) - ;; for XEmacs-21-mule + ;; for XEmacs 21 with mule (require 'pccl-20)) (if (>= emacs-major-version 20) ;; for Emacs 20 (require 'pccl-20) - ;; for MULE 1.* and 2.* + ;; for Mule 2.* (require 'pccl-om)))) (defadvice define-ccl-program