Skip to content

Commit

Permalink
Fix byte-compile feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
damon-kwok committed Aug 9, 2020
1 parent 9eab1d0 commit 03a566b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zetz-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ Optional argument PATH: project path."
(let* ((bin1 (concat (zetz-project-root) "bin/" (zetz-project-name)))
(bin2 (concat (zetz-project-root) "/" (zetz-project-name)))
(bin3 (concat (zetz-buffer-dirname) "/" (zetz-project-name))))
(cond
((file-exists-p bin1) (v-run-command bin1))
((file-exists-p bin2) (v-run-command bin2))
((file-exists-p bin2) (v-run-command bin2)))))
(cond
((file-exists-p bin1) (zetz-run-command bin1))
((file-exists-p bin2) (zetz-run-command bin2))
((file-exists-p bin2) (zetz-run-command bin3)))))

(easy-menu-define zetz-mode-menu zetz-mode-map ;
"Menu for ZetZ mode." ;
Expand Down

0 comments on commit 03a566b

Please sign in to comment.