summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/bibtexperllibs/BibTeX
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-11-24 23:05:53 +0000
committerKarl Berry <karl@freefriends.org>2016-11-24 23:05:53 +0000
commitbde7e32a7a5c3e712a6f4b824569ab3f67ecf864 (patch)
treeb4a885cd7de030ba005d6233e32fedf2e7f02f9e /Master/texmf-dist/scripts/bibtexperllibs/BibTeX
parent7a13ffb6d9458fd728428c6202ef1afa1debfa45 (diff)
bibtexperllibs (24nov16)
git-svn-id: svn://tug.org/texlive/trunk@42567 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/bibtexperllibs/BibTeX')
-rw-r--r--Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm6
-rw-r--r--Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm4
-rw-r--r--Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm4
3 files changed, 7 insertions, 7 deletions
diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm
index 5f0354f403b..7dec6f7bee8 100644
--- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm
+++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser.pm
@@ -1,6 +1,6 @@
package BibTeX::Parser;
{
- $BibTeX::Parser::VERSION = '0.69';
+ $BibTeX::Parser::VERSION = '0.70';
}
# ABSTRACT: A pure perl BibTeX parser
use warnings;
@@ -84,7 +84,7 @@ sub _parse_next {
pos($_) = $pos;
if ( $type eq "STRING" ) {
- if (/\G{\s*($re_name)\s*=\s*/cgo) {
+ if (/\G\{\s*($re_name)\s*=\s*/cgo) {
my $key = $1;
my $value = _parse_string( $self->{strings} );
if ( defined $self->{strings}->{$key} ) {
@@ -337,7 +337,7 @@ L<BibTeX::Parser::Author>
=head1 VERSION
-version 0.69
+version 0.70
=head1 AUTHOR
diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm
index c19bd885776..032186d8ad0 100644
--- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm
+++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Author.pm
@@ -1,6 +1,6 @@
package BibTeX::Parser::Author;
{
- $BibTeX::Parser::Author::VERSION = '0.69';
+ $BibTeX::Parser::Author::VERSION = '0.70';
}
use warnings;
@@ -393,7 +393,7 @@ the following token is not: C<{von}>
=head1 VERSION
-version 0.69
+version 0.70
=head1 AUTHOR
diff --git a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm
index 9e6ab110c0c..665e307b547 100644
--- a/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm
+++ b/Master/texmf-dist/scripts/bibtexperllibs/BibTeX/Parser/Entry.pm
@@ -1,6 +1,6 @@
package BibTeX::Parser::Entry;
{
- $BibTeX::Parser::Entry::VERSION = '0.69';
+ $BibTeX::Parser::Entry::VERSION = '0.70';
}
use warnings;
@@ -357,7 +357,7 @@ C<$entry-E<gt>to_string(canonize_names=E<gt>0)> overrides this behavior.
=head1 VERSION
-version 0.69
+version 0.70
=head1 AUTHOR