From a3e9ff19d693e97c3cf320bfec2425b4635eac82 Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 9 Oct 1998 09:21:35 +0000 Subject: [PATCH] (base64-characters): Enclose with `eval-and-compile'. --- mel-b.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)) -- 1.7.10.4