branch: externals/ergoemacs-mode
commit 977f0359171f148c8e77515ce2f598b3ab5df79e
Author: Walter Landry <[email protected]>
Commit: Walter Landry <[email protected]>
Fix creating png help images
---
ergoemacs-theme-engine.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ergoemacs-theme-engine.el b/ergoemacs-theme-engine.el
index bca43b6..0d06761 100644
--- a/ergoemacs-theme-engine.el
+++ b/ergoemacs-theme-engine.el
@@ -906,7 +906,7 @@ Requires `ergoemacs-inkscape' to be specified."
(if (and ergoemacs-inkscape (file-readable-p ergoemacs-inkscape))
(progn
(push (list (format "%s->%s" (file-name-nondirectory svg-file)
(file-name-nondirectory png-file))
- (format "%s -z -f \"%s\" -e \"%s\""
ergoemacs-inkscape svg-file png-file)
+ (format "%s \"%s\" -o \"%s\"" ergoemacs-inkscape
svg-file png-file)
png-file) ergoemacs-theme--png)
(push png-file ret))
(message "Need inkscape and to specify inkscape location with
`ergoemacs-inkscape'.")