diff --git a/util/command-history/command-history.lisp b/util/command-history/command-history.lisp index abb5819..c9438c9 100644 --- a/util/command-history/command-history.lisp +++ b/util/command-history/command-history.lisp @@ -2,9 +2,6 @@ (in-package #:command-history) -(export '(*start-hook* - *quit-hook*)) - (defvar *home-dir* (getenv "HOME")) (defvar *command-history-file* diff --git a/util/command-history/package.lisp b/util/command-history/package.lisp index 2e1752a..7ac3949 100644 --- a/util/command-history/package.lisp +++ b/util/command-history/package.lisp @@ -1,4 +1,10 @@ ;;;; package.lisp (defpackage #:command-history - (:use #:cl :stumpwm)) + (:use + :cl + :stumpwm) + (:export + :*command-history-file* + :*start-hook* + :*quit-hook*))