1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-04 14:05:49 +01:00

Fix set-from location information for a :verbose :set vbs? query.

This commit is contained in:
Doug Kearns
2009-08-27 18:57:33 +10:00
parent 30076394fb
commit aad5eac202

View File

@@ -800,6 +800,7 @@ const liberator = (function () //{{{
{ {
let vbs = options.get("verbose"); let vbs = options.get("verbose");
let value = vbs.value; let value = vbs.value;
let setFrom = vbs.setFrom;
try try
{ {
@@ -810,6 +811,7 @@ const liberator = (function () //{{{
finally finally
{ {
vbs.set(value); vbs.set(value);
vbs.setFrom = setFrom;
} }
}, },
{ {