From 24b89ebfd69266a5a8ca18df9b870fc523c3a77a Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 30 May 2002 04:50:46 +0000 Subject: [PATCH] allow colons in indentifier names (for jack: " ... !alsa_pcm:out_1 jacksink") Original commit message from CVS: allow colons in indentifier names (for jack: " ... !alsa_pcm:out_1 jacksink") --- gst/parse/parse.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/parse/parse.l b/gst/parse/parse.l index 0e69f5892a..7cdc9c9bc6 100644 --- a/gst/parse/parse.l +++ b/gst/parse/parse.l @@ -21,7 +21,7 @@ _integer [[:digit:]]+ _double [[:digit:]]+"."*[[:digit:]]* _number {_integer}|{_double} _boolean "true"|"false"|"TRUE"|"FALSE" -_identifier [[:alpha:]][[:alnum:]\-_%]* +_identifier [[:alpha:]][[:alnum:]\-_%:]* _lconnection ({_identifier}\.)?{_identifier}! _rconnection !({_identifier}\.)?{_identifier} _bconnection ({_identifier}\.)?{_identifier}!({_identifier}\.)?{_identifier}