diff options
| -rw-r--r-- | lisp/term/android-win.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term/android-win.el b/lisp/term/android-win.el index 6512ef81ff7..3538f41aa84 100644 --- a/lisp/term/android-win.el +++ b/lisp/term/android-win.el | |||
| @@ -532,7 +532,7 @@ accessible to other programs." | |||
| 532 | ;; Coding systems used by androidvfs.c. | 532 | ;; Coding systems used by androidvfs.c. |
| 533 | 533 | ||
| 534 | (define-ccl-program android-encode-jni | 534 | (define-ccl-program android-encode-jni |
| 535 | `(2 ((loop | 535 | '(2 ((loop |
| 536 | (read r0) | 536 | (read r0) |
| 537 | (if (r0 < #x1) ; 0x0 is encoded specially in JNI environments. | 537 | (if (r0 < #x1) ; 0x0 is encoded specially in JNI environments. |
| 538 | ((write #xc0) | 538 | ((write #xc0) |
| @@ -564,7 +564,7 @@ accessible to other programs." | |||
| 564 | "Encode characters from the input buffer for Java virtual machines.") | 564 | "Encode characters from the input buffer for Java virtual machines.") |
| 565 | 565 | ||
| 566 | (define-ccl-program android-decode-jni | 566 | (define-ccl-program android-decode-jni |
| 567 | `(1 ((loop | 567 | '(1 ((loop |
| 568 | ((read-if (r0 >= #x80) ; More than a one-byte sequence? | 568 | ((read-if (r0 >= #x80) ; More than a one-byte sequence? |
| 569 | ((if (r0 < #xe0) | 569 | ((if (r0 < #xe0) |
| 570 | ;; Two-byte sequence; potentially a NULL | 570 | ;; Two-byte sequence; potentially a NULL |