(epa-file-decode-and-insert): Byte compilation warning fix
* lisp/epa-file.el (epa-file-decode-and-insert): Remove superfluous call to `string-to-multibyte string'.
This commit is contained in:
parent
168b8322c3
commit
4bf447bb91
1 changed files with 1 additions and 3 deletions
|
@ -105,9 +105,7 @@ encryption is used."
|
|||
(if (fboundp 'decode-coding-inserted-region)
|
||||
(save-restriction
|
||||
(narrow-to-region (point) (point))
|
||||
(insert (if enable-multibyte-characters
|
||||
(string-to-multibyte string)
|
||||
string))
|
||||
(insert string)
|
||||
(decode-coding-inserted-region
|
||||
(point-min) (point-max)
|
||||
(substring file 0 (string-match epa-file-name-regexp file))
|
||||
|
|
Loading…
Add table
Reference in a new issue