aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2006-02-27 01:53:28 +0000
committerLuc Teirlinck2006-02-27 01:53:28 +0000
commit9f6fdbf0a2c2d9bb1196a14f2561df44c78cf0e1 (patch)
tree2fd058574ba60b75ca1edd426e76de91e892230f
parent0c53638a034f67b87ea95da66fbd5f8a9b5c002e (diff)
downloademacs-9f6fdbf0a2c2d9bb1196a14f2561df44c78cf0e1.tar.gz
emacs-9f6fdbf0a2c2d9bb1196a14f2561df44c78cf0e1.zip
(load-library): Use `get-load-suffixes' instead of `load-suffixes'.
-rw-r--r--lisp/files.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el
index ab69c7958a9..db3309fcf0a 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -699,7 +699,7 @@ This is an interface to the function `load'."
699 (interactive 699 (interactive
700 (list (completing-read "Load library: " 700 (list (completing-read "Load library: "
701 'locate-file-completion 701 'locate-file-completion
702 (cons load-path load-suffixes)))) 702 (cons load-path (get-load-suffixes)))))
703 (load library)) 703 (load library))
704 704
705(defun file-remote-p (file) 705(defun file-remote-p (file)