fix link to source code in help window
* lisp/help-fns.el (find-lisp-object-file-name): remove code that
will never work due to Glenn Morris change a6d63d9
on Apr 20 2013
'No longer include timestamp in header of .elc files'. Add code
that will return .el source file in load-path.
This commit is contained in:
parent
a5bdb872ed
commit
9596accf50
1 changed files with 1 additions and 13 deletions
|
@ -275,19 +275,7 @@ suitable file is found, return nil."
|
|||
lib-name)
|
||||
file-name))
|
||||
;; The next three forms are from `find-source-lisp-file'.
|
||||
(elc-file (locate-file
|
||||
(concat file-name
|
||||
(if (string-match "\\.el\\'" file-name)
|
||||
"c"
|
||||
".elc"))
|
||||
load-path nil 'readable))
|
||||
(str (when elc-file
|
||||
(with-temp-buffer
|
||||
(insert-file-contents-literally elc-file nil 0 256)
|
||||
(buffer-string))))
|
||||
(src-file (and str
|
||||
(string-match ";;; from file \\(.*\\.el\\)" str)
|
||||
(match-string 1 str))))
|
||||
(src-file (locate-library file-name t nil 'readable)))
|
||||
(and src-file (file-readable-p src-file) src-file))))))
|
||||
|
||||
(defun help-fns--key-bindings (function)
|
||||
|
|
Loading…
Add table
Reference in a new issue