]> git.eshelyaron.com Git - emacs.git/commitdiff
Set last-coding-system-used upon ASCII conversion bypass (bug#40407)
authorMattias Engdegård <mattiase@acm.org>
Thu, 9 Apr 2020 14:19:14 +0000 (16:19 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 9 Apr 2020 14:20:15 +0000 (16:20 +0200)
Spotted by Kazuhiro Ito.

* src/coding.c (code_convert_string):
Set Vlast_coding_system if appropriate.
* test/src/coding-tests.el (coding-nocopy-ascii): Add test.

src/coding.c
test/src/coding-tests.el

index 450c498f1e8d3cfc399014fa139c7d8cf287dcee..9848f983a81bf2ae444fb383f9141c864c5d2065 100644 (file)
@@ -9527,11 +9527,15 @@ code_convert_string (Lisp_Object string, Lisp_Object coding_system,
           && (EQ (CODING_ID_EOL_TYPE (coding.id), Qunix)
               || inhibit_eol_conversion
               || ! memchr (SDATA (string), encodep ? '\n' : '\r', bytes)))
-        return (nocopy
-                ? string
-                : (encodep
-                   ? make_unibyte_string (SSDATA (string), bytes)
-                   : make_multibyte_string (SSDATA (string), bytes, bytes)));
+        {
+          if (! norecord)
+            Vlast_coding_system_used = coding_system;
+          return (nocopy
+                  ? string
+                  : (encodep
+                     ? make_unibyte_string (SSDATA (string), bytes)
+                     : make_multibyte_string (SSDATA (string), bytes, bytes)));
+        }
     }
   else if (BUFFERP (dst_object))
     {
index 9f6fac3edd8e502b0b6ecc2b056a7e6937781444..a741e233d39f8a7ea33f117da05155e5759d1c18 100644 (file)
         (should-not (eq (decode-coding-string s coding nil) s))
         (should-not (eq (encode-coding-string s coding nil) s))
         (should (eq (decode-coding-string s coding t) s))
-        (should (eq (encode-coding-string s coding t) s)))
+        (should (eq (encode-coding-string s coding t) s))
+        (should (eq last-coding-system-used coding)))
 
       ;; With EOL conversion inhibited.
       (let ((inhibit-eol-conversion t))