summaryrefslogtreecommitdiff
path: root/lisp/winner.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-03-07 10:10:40 +0000
committerDave Love <fx@gnu.org>2000-03-07 10:10:40 +0000
commit63f6b2c46d2f6a56ae697b8e4617cefb10aa4408 (patch)
treeeb591e2d993969ae5b4d0bbec8abbc9bd20bddac /lisp/winner.el
parentfa42c37fe3359505d76a5e7416728f6802705363 (diff)
downloademacs-63f6b2c46d2f6a56ae697b8e4617cefb10aa4408.tar.gz
Fix keywords, autoload cookies. Split
eval-when-compile form to avoid compilation failure.
Diffstat (limited to 'lisp/winner.el')
-rw-r--r--lisp/winner.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/winner.el b/lisp/winner.el
index 4852e2992e5..d3aa40b2bf3 100644
--- a/lisp/winner.el
+++ b/lisp/winner.el
@@ -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)))
- ;;;###autoload
+
+;;;###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)))
- ;;;###autoload
+
+;;;###autoload
(defun winner-mode (&optional arg)
"Toggle Winner mode.
With arg, turn Winner mode on if and only if arg is positive."