]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete redundant backquotes in android-win.el
authorPo Lu <luangruo@yahoo.com>
Sat, 4 May 2024 06:54:12 +0000 (14:54 +0800)
committerEshel Yaron <me@eshelyaron.com>
Mon, 6 May 2024 16:38:19 +0000 (18:38 +0200)
* lisp/term/android-win.el (android-encode-jni)
(android-decode-jni): Replace redundant backquotes with ordinary
quotes.

(cherry picked from commit ecfbd0ff992adcb5b1b4b37884db8dbfda2fca6b)

lisp/term/android-win.el

index 6512ef81ff7a668a69c3e921cae81799f0bdacc5..3538f41aa84a40d1ad37383d70fb95e8337865a9 100644 (file)
@@ -532,7 +532,7 @@ accessible to other programs."
 ;; Coding systems used by androidvfs.c.
 
 (define-ccl-program android-encode-jni
-  `(2 ((loop
+  '(2 ((loop
        (read r0)
        (if (r0 < #x1) ; 0x0 is encoded specially in JNI environments.
            ((write #xc0)
@@ -564,7 +564,7 @@ accessible to other programs."
   "Encode characters from the input buffer for Java virtual machines.")
 
 (define-ccl-program android-decode-jni
-  `(1 ((loop
+  '(1 ((loop
         ((read-if (r0 >= #x80) ; More than a one-byte sequence?
                  ((if (r0 < #xe0)
                       ;; Two-byte sequence; potentially a NULL