From: morioka Date: Wed, 16 Sep 1998 04:11:01 +0000 (+0000) Subject: (base64-internal-encoding-limit): modify :type. X-Git-Tag: flim-1_10_0-pre1~5 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0c1d31c453a4e5f4b13f40a5bb267299bdd725f8;p=elisp%2Fflim.git (base64-internal-encoding-limit): modify :type. (base64-internal-decoding-limit): Change initial value to 70000; modify :type. --- diff --git a/mel-b.el b/mel-b.el index af08c9c..ae5472a 100644 --- a/mel-b.el +++ b/mel-b.el @@ -52,19 +52,21 @@ :group 'base64 :type '(repeat :tag "Arguments" string)) -(defcustom base64-internal-encoding-limit 70000 +(defcustom base64-internal-encoding-limit 1000 "*limit size to use internal base64 encoder. If size of input to encode is larger than this limit, external encoder is called." :group 'base64 - :type 'integer) + :type '(choice (const :tag "Always use internal encoder" nil) + (integer :tag "Size"))) -(defcustom base64-internal-decoding-limit 1000 +(defcustom base64-internal-decoding-limit 70000 "*limit size to use internal base64 decoder. If size of input to decode is larger than this limit, external decoder is called." :group 'base64 - :type 'integer) + :type '(choice (const :tag "Always use internal decoder" nil) + (integer :tag "Size"))) ;;; @ internal base64 encoder