aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c
index f0fc37dbdfa..1049f1b755a 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -9485,7 +9485,7 @@ code_convert_string (Lisp_Object string, Lisp_Object coding_system,
9485 if (! norecord) 9485 if (! norecord)
9486 Vlast_coding_system_used = Qno_conversion; 9486 Vlast_coding_system_used = Qno_conversion;
9487 if (NILP (dst_object)) 9487 if (NILP (dst_object))
9488 return (nocopy ? Fcopy_sequence (string) : string); 9488 return nocopy ? string : Fcopy_sequence (string);
9489 } 9489 }
9490 9490
9491 if (NILP (coding_system)) 9491 if (NILP (coding_system))