OK, after looking a little bit around i find a call to this function in my
.newsrc.eld:
,----
| (setq gnus-format-specs .... (gnus-correct-substring gnus-tmp-name 0 20))
`----
Seems that Oort Gnus 0.07 has inserted this call...
Now my question: What can i do so Gnus 5.9 can work correct with my
.newsrc.eld file??
Many Thanks in advance,
Klaus
--
Klaus Berndl mailto: klaus....@sdm.de
sd&m AG http://www.sdm.de
software design & management
Thomas-Dehler-Str. 27, 81737 München, Germany
Tel +49 89 63812-392, Fax -220
> After downgrading from Oort Gnus 0.07 to Gnus 5.9 (to try something
> out) i can't open certain newsgroups with Gnus 5.9 cause of a missing
> function gnus-correct-substring...
>
> Now my question: What can i do so Gnus 5.9 can work correct with my
> .newsrc.eld file??
[Untested]
(defalias 'gnus-correct-substring 'substring)
After that `M-x gnus-compile' in Gnus 5.9 should probably remove the
reference to gnus-correct-substring.
Thanks but i have tried the following with success:
1. Manually deleted the line "(setq gnus-format-specs '(..." from .newrc.eld
and saved this file.
2. Running Gnus 5.9 and then `M-x gnus-compile'.
This has added the line "(setq gnus-format-specs '(..." in the Gnus 5.9 format
to .newrc.eld and all is working fine again.
Nevertheless thanks for your help!