[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to find when a function/var has been added
From: |
Stefan Monnier |
Subject: |
Re: How to find when a function/var has been added |
Date: |
Fri, 07 Aug 2015 11:57:06 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) |
> What is the fastest way to find out since when a function/var is available
> in Emacs? Only through NEWS?
I know this is not the answer you're looking for, but back when I was
writing Elisp code that was not part of Emacs, I used the following two
strategies:
1- memory: this is really fast when it works, but obviously that doesn't
always work so well.
2- use the function(ality) and let your users report when it doesn't
work in Emacs-NN.MM. This has the advantage of being lazy, and
letting you learn indirectly which Emacs versions you need to pay
attention to.
Stefan
- Re: How to find when a function/var has been added, (continued)
Re: How to find when a function/var has been added, Przemysław Wojnowski, 2015/08/05
Re: How to find when a function/var has been added, Eli Zaretskii, 2015/08/05
- Re: How to find when a function/var has been added, Przemysław Wojnowski, 2015/08/05
- Re: How to find when a function/var has been added, Stephen Leake, 2015/08/06
- Re: How to find when a function/var has been added, Eli Zaretskii, 2015/08/06
- Re: How to find when a function/var has been added, Przemysław Wojnowski, 2015/08/08
- Re: How to find when a function/var has been added, Stephen Leake, 2015/08/09
- Re: How to find when a function/var has been added, Przemysław Wojnowski, 2015/08/12
Re: How to find when a function/var has been added,
Stefan Monnier <=
Re: How to find when a function/var has been added, Stefan Monnier, 2015/08/07