diff options
| author | Kenichi Handa | 2000-11-28 00:00:00 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-11-28 00:00:00 +0000 |
| commit | 109a5acb02536d8fe872c73a9326b887ed268fe3 (patch) | |
| tree | 8be2b6f219e1aca0afeb197256657a25f92e439f /src/coding.c | |
| parent | e162f054c4d0de93363a01136d091dca788066ca (diff) | |
| download | emacs-109a5acb02536d8fe872c73a9326b887ed268fe3.tar.gz emacs-109a5acb02536d8fe872c73a9326b887ed268fe3.zip | |
(Ffind_coding_systems_region_internal): Be sure to
include no-conversion.
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 fa79b0b4fdd..1b2599712a3 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -5865,7 +5865,9 @@ DEFUN ("find-coding-systems-region-internal", | |||
| 5865 | safe_codings = Fappend (2, args); | 5865 | safe_codings = Fappend (2, args); |
| 5866 | } | 5866 | } |
| 5867 | else | 5867 | else |
| 5868 | safe_codings = Fcons (Qraw_text, Fcons (Qemacs_mule, safe_codings)); | 5868 | safe_codings = Fcons (Qraw_text, |
| 5869 | Fcons (Qemacs_mule, | ||
| 5870 | Fcons (Qno_conversion, safe_codings))); | ||
| 5869 | return safe_codings; | 5871 | return safe_codings; |
| 5870 | } | 5872 | } |
| 5871 | 5873 | ||