From 789110c496067c75451ab3e5ea4d24de0c3b8a08 Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Wed, 25 Sep 2019 18:12:55 -0300 Subject: [PATCH] Don't indent unrelated widgets following widget of type 'other * lisp/wid-edit.el (widget 'other): Use \n instead of the %n escape in the :format property of this widget. If %n is used at the end of the format string, unrelated widgets get indented. (Bug#12533) --- lisp/wid-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 52b7532..916d41a 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -3063,7 +3063,7 @@ 'other If the user selects this alternative, that specifies DEFAULT as the value." :tag "Other" - :format "%t%n" + :format "%t\n" :value 'other) (defvar widget-string-prompt-value-history nil -- 2.7.4