Skip to content

Commit 852220e

Browse files
committed
Use <quote> tags in XML output
This is to mark strings for formatting rather than picking a particular formatting upfront.
1 parent 522a723 commit 852220e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/util/ui_message.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,9 @@ class ui_message_handlert : public message_handlert
131131
case 96: // bright_cyan
132132
return std::string();
133133
case '<': // quote_begin
134+
return "<quote>";
134135
case '>': // quote_end
135-
return "'";
136+
return "</quote>";
136137
}
137138
break;
138139
case uit::JSON_UI:

0 commit comments

Comments
 (0)