diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/jka-cmpr-hook.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/jka-cmpr-hook.el b/lisp/jka-cmpr-hook.el index 74525ec4409..8c388d0cb34 100644 --- a/lisp/jka-cmpr-hook.el +++ b/lisp/jka-cmpr-hook.el | |||
| @@ -97,7 +97,7 @@ The determination as to which compression scheme, if any, to use is | |||
| 97 | based on the filename itself and `jka-compr-compression-info-list'." | 97 | based on the filename itself and `jka-compr-compression-info-list'." |
| 98 | (catch 'compression-info | 98 | (catch 'compression-info |
| 99 | (let ((case-fold-search nil)) | 99 | (let ((case-fold-search nil)) |
| 100 | (mapcar | 100 | (mapc |
| 101 | (function (lambda (x) | 101 | (function (lambda (x) |
| 102 | (and (string-match (jka-compr-info-regexp x) filename) | 102 | (and (string-match (jka-compr-info-regexp x) filename) |
| 103 | (throw 'compression-info x)))) | 103 | (throw 'compression-info x)))) |