diff options
author | Philip Hudson <phil.hudson@iname.com> | 2009-04-19 21:58:23 +0100 |
---|---|---|
committer | Shawn Betts <sabetts@gmail.com> | 2009-04-24 10:22:37 -0700 |
commit | d605c07b966d541820805a4938b59242e315735f (patch) | |
tree | b5e7d58c62afbc22bb961c6503e7bca9ce18c763 /contrib/nogaps.el | |
parent | b890eb8b955edfa46acda6d7b4ff0ab7f15dcfab (diff) | |
download | ratpoison-d605c07b966d541820805a4938b59242e315735f.zip |
in contrib/nogaps.el, placate the emacs Lisp byte-compiler and standardise the (require 'cl) line
Diffstat (limited to 'contrib/nogaps.el')
-rw-r--r-- | contrib/nogaps.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/nogaps.el b/contrib/nogaps.el index 358319e..033c963 100644 --- a/contrib/nogaps.el +++ b/contrib/nogaps.el @@ -4,7 +4,10 @@ ;;; are permitted in any medium without royalty provided the copyright ;;; notice and this notice are preserved. -(require 'cl) +(eval-when-compile + (require 'cl)) + +(require 'ratpoison-cmd) (defun ratpoison-nogaps () (let ((wins (mapcar 'string-to-number (split-string (ratpoison-windows "%n"))))) |