1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-10 22:35:46 +01:00

escape ex command stings prepended to the MOW output

This commit is contained in:
Doug Kearns
2007-10-06 02:05:38 +00:00
parent 2d1152cef9
commit 0a218107ce
4 changed files with 7 additions and 7 deletions

View File

@@ -232,7 +232,7 @@ function Buffer() //{{{
var items = vimperator.completion.get_buffer_completions("");
var number, indicator, title, url;
var list = ":" + vimperator.commandline.getCommand() + "<br/>" + "<table>";
var list = ":" + vimperator.util.escapeHTML(vimperator.commandline.getCommand()) + "<br/>" + "<table>";
for (var i = 0; i < items.length; i++)
{
if (i == vimperator.tabs.index())