- exported symbol *command-history-file*.

This commit is contained in:
cage 2019-11-23 18:27:01 +01:00
parent f708ec885e
commit f74791c02a
2 changed files with 7 additions and 4 deletions

View file

@ -2,9 +2,6 @@
(in-package #:command-history)
(export '(*start-hook*
*quit-hook*))
(defvar *home-dir* (getenv "HOME"))
(defvar *command-history-file*

View file

@ -1,4 +1,10 @@
;;;; package.lisp
(defpackage #:command-history
(:use #:cl :stumpwm))
(:use
:cl
:stumpwm)
(:export
:*command-history-file*
:*start-hook*
:*quit-hook*))