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 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 | ||