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 1C4FE138010 for ; Sat, 22 Sep 2012 22:47:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17152E04C1; Sat, 22 Sep 2012 22:47:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DD00BE04C1 for ; Sat, 22 Sep 2012 22:47:37 +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 43C0833CC9D for ; Sat, 22 Sep 2012 22:47:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id F39F3E5445 for ; Sat, 22 Sep 2012 22:47:35 +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: <1348354532.b35eebe00759319e11c231825602114b4e59f8a2.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:gentoo-syntax commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog ebuild-mode-keywords.el X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: b35eebe00759319e11c231825602114b4e59f8a2 X-VCS-Branch: gentoo-syntax Date: Sat, 22 Sep 2012 22:47:35 +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: 221817e8-7e6a-41ac-8f01-1b2f255058da X-Archives-Hash: ced95670899252ed9a77105e90b25b7e commit: b35eebe00759319e11c231825602114b4e59f8a2 Author: Ulrich Müller gentoo org> AuthorDate: Sat Sep 22 22:55:32 2012 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Sat Sep 22 22:55:32 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=b35eebe0 Fix quoting. * ebuild-mode-keywords.el (ebuild-mode-keywords-eclass-documentation): Fix quoting. --- ChangeLog | 5 +++++ ebuild-mode-keywords.el | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0f19d3f..61df9c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-09-23 Ulrich Müller + + * ebuild-mode-keywords.el (ebuild-mode-keywords-eclass-documentation): + Fix quoting. + 2012-09-22 Ulrich Müller * Version 1.20 released. diff --git a/ebuild-mode-keywords.el b/ebuild-mode-keywords.el index 98f8cec..c28d80e 100644 --- a/ebuild-mode-keywords.el +++ b/ebuild-mode-keywords.el @@ -72,7 +72,7 @@ ;; comment-face will always override the eclass documentation strings (defvar ebuild-mode-keywords-eclass-documentation - '(("@AUTHOR @BLURB" "@CODE" "@DEFAULT_UNSET" "@DESCRIPTION" "@ECLASS" + '(("@AUTHOR" "@BLURB" "@CODE" "@DEFAULT_UNSET" "@DESCRIPTION" "@ECLASS" "@ECLASS-VARIABLE" "@EXAMPLE" "@FUNCTION" "@INTERNAL" "@MAINTAINER" "@REQUIRED" "@RETURN" "@ROFF" "@USAGE" "@VARIABLE") font-lock-type-face))