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 690BF1381F3 for ; Sat, 6 Jul 2013 22:03:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAF09E0A04; Sat, 6 Jul 2013 22:03:20 +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 8DE4FE0A04 for ; Sat, 6 Jul 2013 22:03:20 +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 A7C3433E7C7 for ; Sat, 6 Jul 2013 22:03:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4F706E468F for ; Sat, 6 Jul 2013 22:03:18 +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: <1373148109.72c17033c26996b24f3270a121a6f0d8810484c6.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: 72c17033c26996b24f3270a121a6f0d8810484c6 X-VCS-Branch: ebuild-mode Date: Sat, 6 Jul 2013 22:03:18 +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: e51b4c50-9a0e-4aca-b5bd-7c3269c1746d X-Archives-Hash: 5852bfc9df20d9e5e325dee11910d2aa commit: 72c17033c26996b24f3270a121a6f0d8810484c6 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jul 6 22:01:49 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Sat Jul 6 22:01:49 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=72c17033 Fix ebuild-mode-insert-skeleton for XEmacs. * ebuild-mode.el (ebuild-mode-insert-skeleton): Work around problem with nested interactors in XEmacs. --- ChangeLog | 5 +++++ ebuild-mode.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ed46b70..97cb911 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-07-07 Ulrich Müller + + * ebuild-mode.el (ebuild-mode-insert-skeleton): Work around + problem with nested interactors in XEmacs. + 2013-07-06 Ulrich Müller * Version 1.22 released. diff --git a/ebuild-mode.el b/ebuild-mode.el index 3218dfc..2114b23 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -408,7 +408,7 @@ and `all-completions' for details." "Eclass (null string to terminate): " (mapcar 'list ebuild-mode-eclasses)) str & " ") - & (nil -1 "\n\n") | -8 + & -1 & "\n\n" | -8 "DESCRIPTION=\"" (skeleton-read "Description: ") "\"\n" "HOMEPAGE=\"" (completing-read "Homepage: " '(("http://"))) "\"\n" "SRC_URI=\"" @@ -442,7 +442,7 @@ and `all-completions' for details." "RESTRICT (null string to terminate): " (mapcar 'list ebuild-mode-restrict-list)) str & " ") - & (nil -1 "\"\n") | -10 + & -1 & "\"\n" | -10 "\n" "DEPEND=\"\"\n" "RDEPEND=\"\$\{DEPEND\}\"\n")