Skip to content

Commit

Permalink
elisp.eclass: Delete superfluous quotes in case statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
ulm committed Dec 19, 2015
1 parent 0aa72a1 commit 8eca25e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eclass/elisp.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

inherit elisp-common eutils

case "${EAPI:-0}" in
case ${EAPI:-0} in
0|1) EXPORT_FUNCTIONS src_{unpack,compile,install} \
pkg_{setup,postinst,postrm} ;;
*) EXPORT_FUNCTIONS src_{unpack,prepare,configure,compile,install} \
Expand Down Expand Up @@ -105,7 +105,7 @@ elisp_src_unpack() {
[[ -d ${S} ]] || S=${WORKDIR}
fi

case "${EAPI:-0}" in
case ${EAPI:-0} in
0|1) [[ -d ${S} ]] && cd "${S}"
elisp_src_prepare ;;
esac
Expand Down

0 comments on commit 8eca25e

Please sign in to comment.