emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/find-func.el,v


From: D. Goel
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/find-func.el,v
Date: Wed, 05 Dec 2007 22:16:18 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     D. Goel <deego> 07/12/05 22:16:18

Index: find-func.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/emacs-lisp/find-func.el,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -b -r1.83 -r1.84
--- find-func.el        31 Oct 2007 12:39:44 -0000      1.83
+++ find-func.el        5 Dec 2007 22:16:17 -0000       1.84
@@ -149,9 +149,13 @@
   ;; the same name.
   (if (string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library)
       (setq library (replace-match "" t t library)))
-  (or (locate-file library
+  (or 
+   (locate-file library
                   (or find-function-source-path load-path)
-                  (append (find-library-suffixes) load-file-rep-suffixes))
+               (find-library-suffixes))
+   (locate-file library
+               (or find-function-source-path load-path)
+               load-file-rep-suffixes)
       (error "Can't find library %s" library)))
 
 (defvar find-function-C-source-directory




reply via email to

[Prev in Thread] Current Thread [Next in Thread]