diff src/coding.c @ 38391:6e498054580e

(Ffind_coding_systems_region_internal): If safe_codings is t, don't try to append anything to it.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 12 Jul 2001 20:26:18 +0000
parents 8a086ca42e43
children f5a9d9707da5
line wrap: on
line diff
--- a/src/coding.c	Thu Jul 12 16:29:51 2001 +0000
+++ b/src/coding.c	Thu Jul 12 20:26:18 2001 +0000
@@ -6409,7 +6409,9 @@
     safe_codings = find_safe_codings (p2, p2end, safe_codings, work_table,
 				      &single_byte_char_found);
 
-  if (!single_byte_char_found)
+  if (EQ (safe_codings, Qt))
+    ; /* Nothing to be done.  */
+  else if (!single_byte_char_found)
     {
       /* Append generic coding systems.  */
       Lisp_Object args[2];