diff options
author | Daiki Ueno <ueno@unixuser.org> | 2008-06-02 05:26:26 +0000 |
---|---|---|
committer | Daiki Ueno <ueno@unixuser.org> | 2008-06-02 05:26:26 +0000 |
commit | 437eedba09d67a807d2547886bd3e8fae81138a3 (patch) | |
tree | ddf8983790f62bbcf24d828edb8fca4f32021d96 /lisp/epa-file.el | |
parent | 6843296d5b7b4b987d10c4cdcf1db30729ba2df2 (diff) | |
download | emacs-437eedba09d67a807d2547886bd3e8fae81138a3.tar.gz |
Simplify the last change.
Diffstat (limited to 'lisp/epa-file.el')
-rw-r--r-- | lisp/epa-file.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/epa-file.el b/lisp/epa-file.el index 102e8fd7e49..f621a53e0f1 100644 --- a/lisp/epa-file.el +++ b/lisp/epa-file.el @@ -183,8 +183,8 @@ (if (stringp start) (epa-file--encode-coding-string start coding-system) (unless start - (setq start (point-min)) - (setq end (point-max))) + (setq start (point-min) + end (point-max))) (epa-file--encode-coding-string (buffer-substring start end) coding-system)) (if (or epa-file-select-keys |