# HG changeset patch # User Vinicius Jose Latorre # Date 1193834789 0 # Node ID a6f04138250eebe0ab0abd55fe986e8550cfdfa2 # Parent 60939d2c4cf83e2d9745b817a3b8504e6a8eb0ac Default argument for find-library diff -r 60939d2c4cf8 -r a6f04138250e lisp/ChangeLog --- a/lisp/ChangeLog Wed Oct 31 12:19:55 2007 +0000 +++ b/lisp/ChangeLog Wed Oct 31 12:46:29 2007 +0000 @@ -1,3 +1,8 @@ +2007-10-31 Sean O'Rourke + + * emacs-lisp/find-func.el (find-library): use library at + point as default interactive argument. + 2007-10-31 Juanma Barranquero * emacs-lisp/elp.el (elp-report-limit, elp-restore-all) diff -r 60939d2c4cf8 -r a6f04138250e lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Wed Oct 31 12:19:55 2007 +0000 +++ b/lisp/emacs-lisp/find-func.el Wed Oct 31 12:46:29 2007 +0000 @@ -194,11 +194,21 @@ (defun find-library (library) "Find the elisp source of LIBRARY." (interactive - (list - (completing-read "Library name: " - 'locate-file-completion - (cons (or find-function-source-path load-path) - (find-library-suffixes))))) + (let* ((path (cons (or find-function-source-path load-path) + (find-library-suffixes))) + (def (if (eq (function-called-at-point) 'require) + (save-excursion + (backward-up-list) + (forward-char) + (backward-sexp -2) + (thing-at-point 'symbol)) + (thing-at-point 'symbol)))) + (when def + (setq def (and (locate-file-completion def path 'test) def))) + (list + (completing-read (if def (format "Library name (default %s): " def) + "Library name: ") + 'locate-file-completion path nil nil nil def)))) (let ((buf (find-file-noselect (find-library-name library)))) (condition-case nil (switch-to-buffer buf) (error (pop-to-buffer buf)))))