diff options
| author | Po Lu | 2024-05-04 14:54:12 +0800 |
|---|---|---|
| committer | Po Lu | 2024-05-04 16:13:24 +0800 |
| commit | ecfbd0ff992adcb5b1b4b37884db8dbfda2fca6b (patch) | |
| tree | f8246b83e360575493556eb2bffdd03ed44fa6db | |
| parent | 01b626ccbcc23798b430121cd300aa337bc9b36e (diff) | |
| download | emacs-ecfbd0ff992adcb5b1b4b37884db8dbfda2fca6b.tar.gz emacs-ecfbd0ff992adcb5b1b4b37884db8dbfda2fca6b.zip | |
Delete redundant backquotes in android-win.el
* lisp/term/android-win.el (android-encode-jni)
(android-decode-jni): Replace redundant backquotes with ordinary
quotes.
| -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 |