Add missing paren to stride-read-file.

This commit is contained in:
2026-03-26 02:13:11 -07:00
parent a9ec284612
commit aa415a63da

View File

@@ -29,7 +29,7 @@
(when (file-exists-p stride-nav-file)
(with-temp-buffer
(insert-file-contents stride-nav-file)
(setq stride-nav (read (buffer-string)))))
(setq stride-nav (read (buffer-string))))))
(defun stride-write-file ()
"Write `stride-nav' to `stride-nav-file' file."