Hi Keita, Ikumi Keita <[email protected]> writes:
> diff --git a/bib-cite.el b/bib-cite.el > index a6405046..aa594a1d 100644 > --- a/bib-cite.el > +++ b/bib-cite.el > @@ -1429,11 +1429,7 @@ If within a multi-file document (in AUCTeX only) > (if (bib-Is-hidden) > (save-excursion > (beginning-of-line) > - ;; COMPATIBILITY for emacs<25. > - (if (fboundp 'outline-show-entry) > - (outline-show-entry) > - (with-no-warnings > - (show-entry))))))) > + (outline-show-entry))))) This part of the change leads to this warning when building AUCTeX: In end of data: bib-cite.el:1432:12: Warning: the function `outline-show-entry' is not known to be defined. Should we declare-function outline-show-entry in bib-cite or load outline during byte-compilation? I'm not really familiar with bib-cite, hence my question. Best, Arash
