(base64-characters): Enclose with `eval-and-compile'.
authormorioka <morioka>
Fri, 9 Oct 1998 09:21:35 +0000 (09:21 +0000)
committermorioka <morioka>
Fri, 9 Oct 1998 09:21:35 +0000 (09:21 +0000)
mel-b.el

index c4a32b0..8af1b82 100644 (file)
--- 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))