updated hostname.asd, so now package.lisp can be removed

This commit is contained in:
Joseph Mingrone 2015-03-20 00:06:22 -03:00
parent 7e9e9a002b
commit e442dc5907
3 changed files with 4 additions and 6 deletions

View file

@ -6,6 +6,5 @@
:license "2-CLAUSE BSD (see COPYRIGHT file for details)"
:depends-on (#:stumpwm)
:serial t
:components ((:file "package")
(:file "hostname")))
:components ((:file "hostname")))

View file

@ -3,6 +3,9 @@
;; Put %h in your modeline format string to show your hostname
;;
(defpackage #:hostname
(:use #:cl :stumpwm))
(in-package #:hostname)
(defun fmt-hostname (ml)

View file

@ -1,4 +0,0 @@
;;;; hostname
(defpackage #:hostname
(:use #:cl :stumpwm))