diff options
| author | Stefan Monnier | 2001-07-12 20:28:45 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-07-12 20:28:45 +0000 |
| commit | 176c92e68fcb0d692cb085f641d0fd6a3833c4ab (patch) | |
| tree | 5618a4527d0fccb977bcd69185d5b75c6bfa2873 /src/coding.c | |
| parent | 1c56232f0d2082cafc8f95b822c0114dfaaf67d6 (diff) | |
| download | emacs-176c92e68fcb0d692cb085f641d0fd6a3833c4ab.tar.gz emacs-176c92e68fcb0d692cb085f641d0fd6a3833c4ab.zip | |
(Ffind_coding_systems_region_internal): If safe_codings
is t, don't try to append anything to it.
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]; |