Skip to content

Commit

Permalink
Merge pull request #2066 from Tyriar/lib_import
Browse files Browse the repository at this point in the history
Fix bad import from lib
  • Loading branch information
Tyriar committed May 11, 2019
2 parents d7e6cb1 + c04ebe9 commit 724baf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Buffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { IMarker } from 'xterm';
import { BufferLine, CellData, NULL_CELL_CHAR, NULL_CELL_WIDTH, NULL_CELL_CODE, WHITESPACE_CELL_CHAR, WHITESPACE_CELL_WIDTH, WHITESPACE_CELL_CODE, CHAR_DATA_WIDTH_INDEX, CHAR_DATA_CHAR_INDEX, DEFAULT_ATTR_DATA } from './core/buffer/BufferLine';
import { reflowLargerApplyNewLayout, reflowLargerCreateNewLayout, reflowLargerGetLinesToRemove, reflowSmallerGetNewLineLengths, getWrappedLineTrimmedLength } from './BufferReflow';
import { EventEmitter2, IEvent } from './common/EventEmitter2';
import { Disposable } from '../lib/common/Lifecycle';
import { Disposable } from './common/Lifecycle';

export const MAX_BUFFER_SIZE = 4294967295; // 2^32 - 1

Expand Down

0 comments on commit 724baf2

Please sign in to comment.