Skip to content

Commit

Permalink
fix error in chatu-lilypond.el
Browse files Browse the repository at this point in the history
  • Loading branch information
kimim committed Feb 14, 2024
1 parent 674ef15 commit e9c3436
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion chatu-common.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
Fill PATH with EMPTY string if nonexist."
(let ((parent (file-name-parent-directory path)))
(when (not (file-exists-p parent))
(make-directory parent-dir t))
(make-directory parent t))
(when (not (file-exists-p path))
(write-region empty nil path))
(find-file-other-window path)))
Expand Down Expand Up @@ -71,3 +71,5 @@ Fill PATH with EMPTY string, if nonexist."
executable path)))))

(provide 'chatu-common)

;;; chatu-common.el ends here
4 changes: 2 additions & 2 deletions chatu-lilypond.el
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ KEYWORD-PLIST contains parameters from the chatu line."

(defconst chatu-lilypond-empty
"\\header {
title = ""
title = \"\"
}
\relative c' {
\\relative c' {
}"
"Content of empty LilyPond file.")

Expand Down

0 comments on commit e9c3436

Please sign in to comment.