diff options
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r-- | lisp/progmodes/python.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index abae8aff47b..35f10e54fc7 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -4005,8 +4005,8 @@ The skeleton will be bound to python-skeleton-NAME." (declare (indent 2)) (let* ((name (symbol-name name)) (function-name (intern (concat "python-skeleton--" name))) - (msg (format - "Add '%s' clause? " name))) + (msg (format-message + "Add ā%sā clause? " name))) (when (not skel) (setq skel `(< ,(format "%s:" name) \n \n |