# HG changeset patch # User Aidan Kehoe # Date 1207780287 -7200 # Node ID e7b3a3266356537ddd9926ac0aadf7cb43a49ed6 # Parent 279739019e5c5b6413cfbce19d365eb91476bd04 No doc special-case for autoloads; rely on on #'symbol-file instead. 2008-04-10 Aidan Kehoe * help.el (describe-function-1): Rely on #'symbol-file to tell which file an autoloaded function belongs to, don't special-case them. diff -r 279739019e5c -r e7b3a3266356 lisp/ChangeLog --- a/lisp/ChangeLog Sat Apr 05 14:37:51 2008 +0200 +++ b/lisp/ChangeLog Thu Apr 10 00:31:27 2008 +0200 @@ -1,3 +1,9 @@ +2008-04-10 Aidan Kehoe + + * help.el (describe-function-1): + Rely on #'symbol-file to tell which file an autoloaded function + belongs to, don't special-case them. + 2008-03-19 Stephen J. Turnbull * custom.el (custom-theme-reset-internal): Fix call to get (symbol diff -r 279739019e5c -r e7b3a3266356 lisp/help.el --- a/lisp/help.el Sat Apr 05 14:37:51 2008 +0200 +++ b/lisp/help.el Thu Apr 10 00:31:27 2008 +0200 @@ -1424,8 +1424,6 @@ (t nil))) (princ "\n") - (if autoload-file - (princ (format " -- autoloads from \"%s\"\n" autoload-file))) (or file-name (setq file-name (symbol-file function))) (when file-name