equal
deleted
inserted
replaced
1 diff -ru jEdit/org/gjt/sp/jedit/textarea/TextArea.java jEdit-patched/org/gjt/sp/jedit/textarea/TextArea.java |
|
2 --- jEdit/org/gjt/sp/jedit/textarea/TextArea.java 2012-08-13 19:11:04.000000000 +0200 |
|
3 +++ jEdit-patched/org/gjt/sp/jedit/textarea/TextArea.java 2012-09-03 19:37:48.000000000 +0200 |
|
4 @@ -905,6 +905,11 @@ |
|
5 return chunkCache.getLineInfo(screenLine).physicalLine; |
|
6 } //}}} |
|
7 |
|
8 + public Chunk getChunksOfScreenLine(int screenLine) |
|
9 + { |
|
10 + return chunkCache.getLineInfo(screenLine).chunks; |
|
11 + } |
|
12 + |
|
13 //{{{ getScreenLineOfOffset() method |
|
14 /** |
|
15 * Returns the screen (wrapped) line containing the specified offset. |
|
16 |
|