branch: elpa/dockerfile-mode
commit 29f60881d2ce7b806a0e010134480afb001a55ef
Author: Mitchel Humpherys <[email protected]>
Commit: Mitchel Humpherys <[email protected]>
add a space after : in image name prompt
---
dockerfile-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dockerfile-mode.el b/dockerfile-mode.el
index ee8791f685..468d2f6edc 100644
--- a/dockerfile-mode.el
+++ b/dockerfile-mode.el
@@ -78,7 +78,7 @@
"Build an image based upon the buffer"
(interactive
(if (null docker-image-name)
- (list (read-string "image-name:" nil nil))
+ (list (read-string "image-name: " nil nil))
(list docker-image-name)))
(save-buffer)
(if (stringp image-name)