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 3B6D5138200 for ; Tue, 17 Sep 2013 21:33:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E40EFE0C30; Tue, 17 Sep 2013 21:33:39 +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 618A4E0C30 for ; Tue, 17 Sep 2013 21:33:39 +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 2712433ECC7 for ; Tue, 17 Sep 2013 21:33:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C8C4FE530A for ; Tue, 17 Sep 2013 21:33:36 +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: <1379451888.05e7d1463c4a46f9586cf58648d29659ae82d22f.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:ebuild-mode commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog gentoo-newsitem-mode.el X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Mueller X-VCS-Revision: 05e7d1463c4a46f9586cf58648d29659ae82d22f X-VCS-Branch: ebuild-mode Date: Tue, 17 Sep 2013 21:33:36 +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: b7a59bf4-a507-421e-8246-07a34629c3c6 X-Archives-Hash: 30eabc07a1b2c82d88d6d82a1071b5b6 commit: 05e7d1463c4a46f9586cf58648d29659ae82d22f Author: Ulrich Müller gentoo org> AuthorDate: Tue Sep 17 21:04:48 2013 +0000 Commit: Ulrich Mueller gentoo org> CommitDate: Tue Sep 17 21:04:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=05e7d146 Add missing pair of parentheses in gentoo-newsitem-mode.el. * gentoo-newsitem-mode.el (gentoo-newsitem-font-lock-keywords): Add missing pair of parentheses. --- ChangeLog | 5 +++++ gentoo-newsitem-mode.el | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6312973..194a3a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-09-17 Ulrich Müller + + * gentoo-newsitem-mode.el (gentoo-newsitem-font-lock-keywords): + Add missing pair of parentheses. + 2013-09-08 Ulrich Müller * Version 1.23 released. diff --git a/gentoo-newsitem-mode.el b/gentoo-newsitem-mode.el index a965951..7c8be1c 100644 --- a/gentoo-newsitem-mode.el +++ b/gentoo-newsitem-mode.el @@ -30,13 +30,13 @@ (defvar gentoo-newsitem-font-lock-keywords (eval-when-compile - `(,(concat "^" - (regexp-opt - '("Title" "Author" "Translator" "Content-Type" "Posted" - "Revision" "News-Item-Format" "Display-If-Installed" - "Display-If-Keyword" "Display-If-Profile") t) - ":") - . font-lock-keyword-face)) + `((,(concat "^" + (regexp-opt + '("Title" "Author" "Translator" "Content-Type" "Posted" + "Revision" "News-Item-Format" "Display-If-Installed" + "Display-If-Keyword" "Display-If-Profile") t) + ":") + . font-lock-keyword-face))) "Expressions to highlight in Gentoo newsitem mode.") ;;;###autoload