branch: elpa
commit c1a2b332b1f47598d2e158b8fcfe8a2824411bd7
Author: Arash Esbati <[email protected]>
Commit: Arash Esbati <[email protected]>
; Add missing space in prompt
* style/environ.el (TeX-arg-environ-final-code): Add missing space
in prompt.
---
style/environ.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/style/environ.el b/style/environ.el
index c6b34cc..4f275e9 100644
--- a/style/environ.el
+++ b/style/environ.el
@@ -89,7 +89,7 @@ from `environ.sty'.")
(defun TeX-arg-environ-final-code (_optional)
"Query for the presence of optional `final code' as argument to
`\\NewEnviron' and insert the appropriate brackets."
- (let ((fincode (y-or-n-p "With optional final code?")))
+ (let ((fincode (y-or-n-p "With optional final code? ")))
(when fincode
(insert "[]"))))