Changeset 950
- Timestamp:
- 2008-04-26 12:58:50 (7 months ago)
- Files:
-
- branches/1.0.x/chrome/content/dta/addurl.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0.x/chrome/content/dta/addurl.js
r923 r950 194 194 if ((this._pats[i] instanceof Literal) && (this._pats[i + 1] instanceof Literal)) { 195 195 this._pats[i] = new Literal(this._pats[i].str + this._pats[i + 1].str); 196 this._pats = this._pats.slice(i + 1, 1);196 this._pats.splice(i + 1, 1); 197 197 } 198 198 }
