[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: master 64a8e189: Remove compatibility code
From: |
Arash Esbati |
Subject: |
Re: master 64a8e189: Remove compatibility code |
Date: |
Sun, 08 May 2022 20:04:58 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 |
Hi Keita,
Ikumi Keita <ikumi@ikumi.que.jp> 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
- Re: master 64a8e189: Remove compatibility code,
Arash Esbati <=