changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: nullables

changeset 347: 724218ecea4b
parent 346: cf840165e1a8
child 348: 3bce51a08b5c
author: Richard Westhaver <ellis@rwest.io>
date: Mon, 13 May 2024 22:03:51 -0400
files: lisp/bin/homer.lisp
description: nullables
     1.1--- a/lisp/bin/homer.lisp	Mon May 13 22:01:27 2024 -0400
     1.2+++ b/lisp/bin/homer.lisp	Mon May 13 22:03:51 2024 -0400
     1.3@@ -17,9 +17,9 @@
     1.4   ((user :initform *user* :initarg :user :type string)
     1.5    (path :initform nil :initarg :path :type (or pathname null))
     1.6    (src ::initform nil :initarg :src :type (or null pathname vc-repo))
     1.7-   (skel :initform (load-user-skelrc) :initarg :skel :type (or pathname sk-user-config))
     1.8-   (krypt :initform (load-kryptrc) :initarg :krypt :type (or pathname krypt-config))
     1.9-   (packy :initarg :packy :type (or pathname pk-user-config))
    1.10+   (skel :initform (load-user-skelrc) :initarg :skel :type (or null pathname sk-user-config))
    1.11+   (krypt :initform (load-kryptrc) :initarg :krypt :type (or null pathname krypt-config))
    1.12+   (packy :initform nil :initarg :packy :type (or null pathname pk-user-config))
    1.13    (mail :initarg :mail :type pathname)
    1.14    (shell :initarg :shell :type (or pathname shell-user-config))
    1.15    (editor :initarg :editor :type (or pathname editor-user-config))