diff options
Diffstat (limited to 'lisp/textmodes/two-column.el')
-rw-r--r-- | lisp/textmodes/two-column.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/textmodes/two-column.el b/lisp/textmodes/two-column.el index ea6b52561d6..5e318b5569e 100644 --- a/lisp/textmodes/two-column.el +++ b/lisp/textmodes/two-column.el @@ -373,9 +373,8 @@ First column's text sSs Second column's text \(See \\[describe-mode] .)" (interactive "*p") (and (2C-other) - (if (y-or-n-p (concat "Overwrite associated buffer `" - (buffer-name (2C-other)) - "'? ")) + (if (y-or-n-p (format-message "Overwrite associated buffer ā%sā? " + (buffer-name (2C-other)))) (with-current-buffer (2C-other) (erase-buffer)) (signal 'quit nil))) |