(score-mode-coding-system): Use `static-if'.
authoryamaoka <yamaoka>
Fri, 2 Jul 1999 13:11:17 +0000 (13:11 +0000)
committeryamaoka <yamaoka>
Fri, 2 Jul 1999 13:11:17 +0000 (13:11 +0000)
(TopLevel): Require `static'.

lisp/score-mode.el

index 181f982..e1bef9e 100644 (file)
@@ -26,7 +26,9 @@
 ;;; Code:
 
 (require 'easymenu)
-(eval-when-compile (require 'cl))
+(eval-when-compile
+  (require 'cl)
+  (require 'static))
 
 (defvar gnus-score-mode-hook nil
   "*Hook run in score mode buffers.")
@@ -51,7 +53,7 @@
     table)
   "Syntax table used in score-mode buffers.")
 
-(defvar score-mode-coding-system (if (boundp 'MULE)
+(defvar score-mode-coding-system (static-if (boundp 'MULE)
                                     '*ctext*
                                   'ctext))