From: morioka Date: Fri, 9 Oct 1998 09:21:35 +0000 (+0000) Subject: (base64-characters): Enclose with `eval-and-compile'. X-Git-Tag: flim-1_10_3~8 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=a3e9ff19d693e97c3cf320bfec2425b4635eac82;p=elisp%2Fflim.git (base64-characters): Enclose with `eval-and-compile'. --- diff --git a/mel-b.el b/mel-b.el index c4a32b0..8af1b82 100644 --- a/mel-b.el +++ b/mel-b.el @@ -72,8 +72,10 @@ external decoder is called." ;;; @ internal base64 encoder ;;; based on base64 decoder by Enami Tsugutomo -(defconst base64-characters - "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/") +(eval-and-compile + (defconst base64-characters + "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/") + ) (defmacro base64-num-to-char (n) `(aref base64-characters ,n))