(find-compressed-version): Don't set `error' here.
authorRichard M. Stallman <rms@gnu.org>
Sun, 24 May 1998 16:47:05 +0000 (16:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 24 May 1998 16:47:05 +0000 (16:47 +0000)
lisp/uncompress.el

index d809f81..ceaa0da 100644 (file)
@@ -99,7 +99,9 @@ It then selects a major mode from the uncompressed file name and contents."
        (progn
          (insert-file-contents buffer-file-name t)
          (goto-char (point-min))
-         (setq error nil)
+         ;; No need for this, because error won't be set to t
+         ;; if this function returns t.
+         ;; (setq error nil)
          t))))
 
 (provide 'uncompress)