Clean up Android debug code
* java/org/gnu/emacs/EmacsInputConnection.java (getSurroundingText): Don't print debug information if DEBUG_IC is off.
This commit is contained in:
parent
b67a23f3e3
commit
4c390f14f4
1 changed files with 1 additions and 1 deletions
|
@ -587,7 +587,7 @@ public final class EmacsInputConnection implements InputConnection
|
|||
text = EmacsNative.getSurroundingText (windowHandle, beforeLength,
|
||||
afterLength, flags);
|
||||
|
||||
if (text != null)
|
||||
if (EmacsService.DEBUG_IC && text != null)
|
||||
Log.d (TAG, ("getSurroundingText: "
|
||||
+ text.getSelectionStart ()
|
||||
+ ","
|
||||
|
|
Loading…
Add table
Reference in a new issue