+2010-05-08 Noritada Kobayashi <nori1@dolphin.c.u-tokyo.ac.jp>
+ Bruno Haible <bruno@clisp.org>
+
+ po-mode: Fix po-get-msgid function in plural entries.
+ * po-mode.el (po-get-msgid): Use po-start-of-msgid_plural as end
+ pointer, if it is set.
+ Reported in
+ <http://lists.gnu.org/archive/html/bug-gnu-utils/2008-05/msg00031.html>.
+
2010-05-08 Noritada Kobayashi <nori1@dolphin.c.u-tokyo.ac.jp>
Bruno Haible <bruno@clisp.org>
"Extract and return the unquoted msgid string."
(let ((string (po-extract-unquoted (current-buffer)
po-start-of-msgid
- po-start-of-msgstr-block)))
+ (or po-start-of-msgid_plural
+ po-start-of-msgstr-block))))
string))
(defun po-get-msgstr-flavor ()