changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: oopsie

changeset 520: 07be192cf794
parent 518: 32ce3d8af5ad
child 521: d1f96f95a10c
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 07 Jul 2024 02:13:50 -0400
files: lisp/lib/skel/core/util.lisp
description: oopsie
     1.1--- a/lisp/lib/skel/core/util.lisp	Sun Jul 07 02:04:12 2024 -0400
     1.2+++ b/lisp/lib/skel/core/util.lisp	Sun Jul 07 02:13:50 2024 -0400
     1.3@@ -12,14 +12,14 @@
     1.4 (defun init-user-skelrc (&optional (file *user-skelrc*))
     1.5   "Initialize a skelrc configuration based on the currently active
     1.6 *SKEL-USER-CONFIG*. Defaults to ~/.skelrc."
     1.7-  (sk-write-file *user-skelrc*
     1.8+  (sk-write-file (make-instance 'sk-user-config)
     1.9                  :path file
    1.10                  :pretty t))
    1.11 
    1.12 (defun init-system-skelrc (&optional (file *system-skelrc*))
    1.13   "Initialize a system skelrc configuration based on the currently active
    1.14 *SKEL-SYSTEM-CONFIG*."
    1.15-  (sk-write-file *system-skelrc*
    1.16+  (sk-write-file (make-instance 'sk-system-config)
    1.17                  :path file
    1.18                  :pretty t))
    1.19