]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix keywords, autoload cookies. Split
authorDave Love <fx@gnu.org>
Tue, 7 Mar 2000 10:10:40 +0000 (10:10 +0000)
committerDave Love <fx@gnu.org>
Tue, 7 Mar 2000 10:10:40 +0000 (10:10 +0000)
eval-when-compile form to avoid compilation failure.

lisp/ChangeLog
lisp/winner.el

index dfbf32ad4550b20729c973aa5c7dad20144a67c9..5a880cdb977586d49e1b7689fd3410f9b8af2d8f 100644 (file)
@@ -1,3 +1,8 @@
+2000-03-07  Dave Love  <fx@gnu.org>
+
+       * winner.el: Fix keywords, autoload cookies.  Split
+       eval-when-compile form to avoid compilation failure.
+
 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
 
        * international/mule.el: Modify comment about coding system
index 4852e2992e50a3d7e843660aec7a4a7ae2eeb0ad..d3aa40b2bf3e68b09af95e67a444d8030dc8f6e7 100644 (file)
@@ -6,7 +6,7 @@
 ;; Maintainer: Ivar Rummelhoff <ivarr@ifi.uio.no>
 ;; Created: 27 Feb 1997
 ;; Time-stamp: <1998-08-21 19:51:02 ivarr>
-;; Keywords: windows
+;; Keywords: convenience frames
 
 ;; This file is part of GNU Emacs.
 
@@ -42,8 +42,9 @@
 ;;; Code:
 
 (eval-when-compile
-  (require 'cl)
+  (require 'cl))
 
+(eval-when-compile
   (cond
    ((eq (aref (emacs-version) 0) ?X)
     (defmacro winner-active-region ()
@@ -67,7 +68,8 @@
   (defmacro defcustom (symbol &optional initvalue docs &rest rest)
     (list 'defvar symbol initvalue docs)))
 
-\f;;;###autoload
+\f
+;;;###autoload
 (defcustom winner-mode nil
   "Toggle winner-mode.
 Setting this variable directly does not take effect;
@@ -326,7 +328,8 @@ use either \\[customize] or the function `winner-mode'."
       (split-window)
       winner-var)))
 
-\f;;;###autoload
+\f
+;;;###autoload
 (defun winner-mode (&optional arg)
   "Toggle Winner mode.
 With arg, turn Winner mode on if and only if arg is positive."