diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-04-13 09:24:42 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-04-19 22:08:15 +0200 |
commit | a20e0a01a098319a9261eafc1c5db7ccda909dae (patch) | |
tree | 493ce1f91609530030c8c962f9dd180439965c21 /eclass | |
parent | elisp-common.eclass: Add timeout to version detection (diff) | |
download | gentoo-a20e0a01a098319a9261eafc1c5db7ccda909dae.tar.gz gentoo-a20e0a01a098319a9261eafc1c5db7ccda909dae.tar.bz2 gentoo-a20e0a01a098319a9261eafc1c5db7ccda909dae.zip |
elisp-common.eclass: Drop deprecated elisp-need-emacs()
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp-common.eclass | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/eclass/elisp-common.eclass b/eclass/elisp-common.eclass index bdf97f413033..f7e3631a965c 100644 --- a/eclass/elisp-common.eclass +++ b/eclass/elisp-common.eclass @@ -276,27 +276,6 @@ elisp-check-emacs-version() { fi } -# Test if the eselected Emacs version is at least the major version -# of GNU Emacs specified as argument. -# Return 0 if true, 1 if false, 2 if trouble. -# Deprecated, use elisp-check-emacs-version instead. - -elisp-need-emacs() { - local need_emacs=$1 have_emacs - have_emacs=$(elisp-emacs-version) || return 2 - einfo "Emacs version: ${have_emacs}" - if [[ ${have_emacs} =~ XEmacs|Lucid ]]; then - eerror "This package needs GNU Emacs." - return 1 - fi - if ! [[ ${have_emacs%%.*} -ge ${need_emacs%%.*} ]]; then - eerror "This package needs at least Emacs ${need_emacs%%.*}." - eerror "Use \"eselect emacs\" to select the active version." - return 1 - fi - return 0 -} - # @FUNCTION: elisp-compile # @USAGE: <list of elisp files> # @DESCRIPTION: |