From: Bruno Haible Date: Sun, 17 Jun 2007 22:22:55 +0000 (+0000) Subject: msg is not a keyword. X-Git-Tag: v0.17~330 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9920e0c42d8ca67f201ba76c470fc2030f2827a9;p=thirdparty%2Fgettext.git msg is not a keyword. --- diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index 3752ea6f4..59979f667 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,8 @@ +2007-06-17 Bruno Haible + + * po-mode.el (po-font-lock-keywords): Stop recognizing "msg" as a + keyword. + 2007-06-17 Bruno Haible Fix '#' command on obsolete entries. diff --git a/gettext-tools/misc/po-mode.el b/gettext-tools/misc/po-mode.el index 9757b2a76..44003d017 100644 --- a/gettext-tools/misc/po-mode.el +++ b/gettext-tools/misc/po-mode.el @@ -927,7 +927,7 @@ Initialize or replace current translation with the original message"))]) ;; (regexp-opt ;; '("msgid " "msgid_plural " "msgstr " "msgstr[0] " "msgstr[1] ")) ("\ -^\\(\\(msg\\(id\\(_plural\\)?\\|str\\(\\[[0-9]\\]\\)?\\)?\\) \\)?\"\\|\"$" +^\\(\\(msg\\(id\\(_plural\\)?\\|str\\(\\[[0-9]\\]\\)?\\)\\) \\)?\"\\|\"$" . font-lock-keyword-face) ("\\\\.\\|%\\*?[-.0-9ul]*[a-zA-Z]" . font-lock-variable-name-face) ("^# .*\\|^#[:,]?" . font-lock-comment-face)