diff options
| author | Kenichi Handa | 2006-05-26 04:47:47 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-05-26 04:47:47 +0000 |
| commit | 47a355de933fe933c6e936ca5745a2bf3047d383 (patch) | |
| tree | ed416ba313af1885e9b45b12ee84c52cfe90bc01 | |
| parent | e0b582b8e1a36463483c76f85c43fd6bf2579885 (diff) | |
| download | emacs-47a355de933fe933c6e936ca5745a2bf3047d383.tar.gz emacs-47a355de933fe933c6e936ca5745a2bf3047d383.zip | |
(decode-coding-inserted-region): Call
find-operation-coding-system with (FILENAME . BUFFER).
| -rw-r--r-- | lisp/international/mule.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 72198bb1258..b66345ea3a8 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -1986,7 +1986,8 @@ Part of the job of this function is setting `buffer-undo-list' appropriately." | |||
| 1986 | (or coding | 1986 | (or coding |
| 1987 | (setq coding (car (find-operation-coding-system | 1987 | (setq coding (car (find-operation-coding-system |
| 1988 | 'insert-file-contents | 1988 | 'insert-file-contents |
| 1989 | filename visit beg end replace)))) | 1989 | (cons filename (current-buffer)) |
| 1990 | visit beg end replace)))) | ||
| 1990 | (if (coding-system-p coding) | 1991 | (if (coding-system-p coding) |
| 1991 | (or enable-multibyte-characters | 1992 | (or enable-multibyte-characters |
| 1992 | (setq coding | 1993 | (setq coding |