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

lisp/gnus-start.el

index ff75518..8902ab3 100644 (file)
@@ -32,7 +32,9 @@
 (require 'gnus-range)
 (require 'gnus-util)
 (require 'message)
-(eval-when-compile (require 'cl))
+(eval-when-compile
+  (require 'cl)
+  (require 'static))
 
 (defcustom gnus-startup-file (nnheader-concat gnus-home-directory ".newsrc")
   "Your `.newsrc' file.
@@ -395,7 +397,7 @@ Can be used to turn version control on or off."
   :group 'gnus-newsrc
   :type 'boolean)
 
-(defvar gnus-startup-file-coding-system (if (boundp 'MULE)
+(defvar gnus-startup-file-coding-system (static-if (boundp 'MULE)
                                            '*ctext*
                                          'ctext)
   "*Coding system for startup file.")