Skip to content

Commit

Permalink
another windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaulhaber committed Oct 23, 2024
1 parent ae932b4 commit 98018b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reel.el
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
('gnu/linux "so")
('darwin "dylib")
('windows-nt "dll")))
(path (format "libreel.%s" ext)))
(path (format "%s.%s" (if (eq system-type 'windows-nt) "reel" "libreel") ext)))
;; we load the rust output depending on the context
;; if the module exists as a sibling to this file, we immediately load that
(if (file-exists-p (expand-file-name path))
Expand Down

0 comments on commit 98018b4

Please sign in to comment.