9 lines
303 B
EmacsLisp
9 lines
303 B
EmacsLisp
;;; 03-linuxplus-load-lesson-history.el --- linuxplus-load-lesson-history
|
|
|
|
(defun linuxplus-load-lesson-history ()
|
|
"Load lesson history from disk."
|
|
(when (file-exists-p linuxplus-lesson-history-file)
|
|
(load-file linuxplus-lesson-history-file)))
|
|
|
|
;;; 03-linuxplus-load-lesson-history.el ends here
|