diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-08-03 12:33:14 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-08-03 12:33:14 +0000 |
commit | b8fa4e874202bb8a2a5b63bbdd2aa9551df3d117 (patch) | |
tree | 752a67873605102d6bf85608fce2e651cf92fda5 /lisp/info.el | |
parent | b0fa1513a6ea9ecfa3e0f5510cfa3d5cba585b72 (diff) | |
download | emacs-b8fa4e874202bb8a2a5b63bbdd2aa9551df3d117.tar.gz |
(info-insert-file-contents): Use info-file-exists-p
instread of file-exists-p.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 91344b850fb..29b34632d52 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -270,7 +270,7 @@ Do the right thing if the file has been compressed or zipped." (check-short (and (fboundp 'msdos-long-file-names) lfn)) fullname decoder done) - (if (file-exists-p filename) + (if (info-file-exists-p filename) ;; FILENAME exists--see if that name contains a suffix. ;; If so, set DECODE accordingly. (progn |