fix for #917, a bug introduced by a typo in 89b7d96ccd

Josh Barnes 10 years ago
parent d86714a015
commit 53b8e37633

@ -50,12 +50,12 @@ define([
*/
CodeMirror.commands.delSpaceToPrevTabStop = function(cm){
var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to);
if (sel) {
if (sel) {
var ranges = cm.listSelections();
for (var i = ranges.length - 1; i >= 0; i--) {
var head = ranges[i].head;
var anchor = ranges[i].anchor;
cm.replaceRange("", Pos(head.line, head.ch), CodeMirror.Pos(anchor.line, anchor.ch));
var head = ranges[i].head;
var anchor = ranges[i].anchor;
cm.replaceRange("", CodeMirror.Pos(head.line, head.ch), CodeMirror.Pos(anchor.line, anchor.ch));
}
return;
}

Loading…
Cancel
Save