diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 07233ee4d7e..34773217cc7 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -6409,7 +6409,9 @@ DEFUN ("find-coding-systems-region-internal", | |||
| 6409 | safe_codings = find_safe_codings (p2, p2end, safe_codings, work_table, | 6409 | safe_codings = find_safe_codings (p2, p2end, safe_codings, work_table, |
| 6410 | &single_byte_char_found); | 6410 | &single_byte_char_found); |
| 6411 | 6411 | ||
| 6412 | if (!single_byte_char_found) | 6412 | if (EQ (safe_codings, Qt)) |
| 6413 | ; /* Nothing to be done. */ | ||
| 6414 | else if (!single_byte_char_found) | ||
| 6413 | { | 6415 | { |
| 6414 | /* Append generic coding systems. */ | 6416 | /* Append generic coding systems. */ |
| 6415 | Lisp_Object args[2]; | 6417 | Lisp_Object args[2]; |