summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHadriel Kaplan <hadrielk@yahoo.com>2014-02-04 18:26:07 -0500
committerEvan Huus <eapache@gmail.com>2014-02-05 00:14:50 +0000
commitc391d740fd92440ea515433f00889ec2b0e25960 (patch)
tree9025fbb0c2a03d3941f7fdfb18ccafd0e3953b86
parent9eaa61109e034327e1923476595a62fe4da22faa (diff)
downloadwireshark-c391d740fd92440ea515433f00889ec2b0e25960.tar.gz
Fix wslua docs script to handle module names with digits, like Int64/UInt64
The fix in commit 28e028ddd5579c3d405b21523cdc2773c798e32f missed the module name, which was only grabbing alphabetic characters not numbers. This fixes that oversight. Change-Id: I65a87279024a81b33a8deb83b7a3573ea6eaf139 Reviewed-on: https://code.wireshark.org/review/117 Reviewed-by: Evan Huus <eapache@gmail.com> Tested-by: Evan Huus <eapache@gmail.com>
-rwxr-xr-xdocbook/make-wsluarm.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/docbook/make-wsluarm.pl b/docbook/make-wsluarm.pl
index 29f3a8b6a4..5c0b8db740 100755
--- a/docbook/make-wsluarm.pl
+++ b/docbook/make-wsluarm.pl
@@ -102,7 +102,7 @@ my @control =
(
# This will be scanned in order trying to match the re if it matches
# the body will be executed immediatelly after.
-[ 'WSLUA_MODULE\s*([A-Z][a-zA-Z]+)([^\*]*)',
+[ 'WSLUA_MODULE\s*([A-Z][a-zA-Z0-9]+)([^\*]*)',
sub {
$module{name} = $1;
$module{descr} = $2