From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6717B1381F3 for ; Wed, 18 Sep 2013 06:53:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13616E0BBD; Wed, 18 Sep 2013 06:53:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9A475E0BBD for ; Wed, 18 Sep 2013 06:53:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B168033EC3B for ; Wed, 18 Sep 2013 06:53:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5E059E530A for ; Wed, 18 Sep 2013 06:53:38 +0000 (UTC) From: "Ulrich Mueller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Mueller" Message-ID: <1379487149.6d0d36c50b4f46bde74e022770274c03bc87a1fe.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:ebuild-mode commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog ebuild-mode.el X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: 6d0d36c50b4f46bde74e022770274c03bc87a1fe X-VCS-Branch: ebuild-mode Date: Wed, 18 Sep 2013 06:53:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 60283a0b-6052-44b7-ba54-a99ee437821c X-Archives-Hash: 9722219bb00af167ea698969a058d865 commit: 6d0d36c50b4f46bde74e022770274c03bc87a1fe Author: Ulrich Müller gentoo org> AuthorDate: Wed Sep 18 06:52:29 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Wed Sep 18 06:52:29 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=6d0d36c5 Remove special treatment for EAPI=0. * ebuild-mode.el (ebuild-mode-insert-skeleton): Remove special treatment for EAPI=0. --- ChangeLog | 5 +++++ ebuild-mode.el | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a581b99..241b369 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-09-18 Ulrich Müller + + * ebuild-mode.el (ebuild-mode-insert-skeleton): Remove special + treatment for EAPI=0. + 2013-09-17 Ulrich Müller * Version 1.24 released. diff --git a/ebuild-mode.el b/ebuild-mode.el index f504d79..25ddc56 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -402,8 +402,7 @@ and `all-completions' for details." "\n" ;; EAPI "EAPI=" - (let ((s (skeleton-read "EAPI: "))) - (if (string-equal "0" s) "" s)) + (skeleton-read "EAPI: ") & "\n\n" | -5 ;; inherited eclasses "inherit "