intro: "SY" == Steve Youngs <youngs(a)xemacs.org> writes:
SY> |--==> "SJT" == Stephen J Turnbull <turnbull(a)sk.tsukuba.ac.jp>
writes:
>>>>>> "SY" == Steve Youngs
<youngs(a)xemacs.org> writes:
SY> How can I make [find-function] show me
[...] the installed version?
SJT> (setq find-function-source-path nil) should work.
SY> Nope, tried that. It doesn't work, sorry. Any other ideas?
Replace in `load-history' filenames for dumped filee. Make an evil hack:
(dolist (entry load-history)
(when (string-match "/build/directory/" (car entry))
(setcar entry
(replace-match "/installation/directory/"
t t (car entry)))))
Nick.