Skip to content

Commit

Permalink
Fix byte compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
kijimaD authored and bbatsov committed Apr 30, 2022
1 parent b014d79 commit a4f86f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ If the version number could not be determined, signal an error,
if called interactively, or if SHOW-VERSION is non-nil, otherwise
just return nil."
(interactive (list t))
((let ((version (or (projectile--pkg-version) projectile-version))))
(let ((version (or (projectile--pkg-version) projectile-version)))
(if show-version
(message "Projectile %s" version)
version)))
Expand Down

0 comments on commit a4f86f9

Please sign in to comment.