diff src/parse.y @ 4930:bdb307dc8613

[project @ 2004-08-05 04:55:26 by jwe]
author jwe
date Thu, 05 Aug 2004 04:55:26 +0000
parents fe71c458f438
children 4fc993a4e072
line wrap: on
line diff
--- a/src/parse.y	Tue Aug 03 20:45:34 2004 +0000
+++ b/src/parse.y	Thu Aug 05 04:55:26 2004 +0000
@@ -672,6 +672,13 @@
 		  { $$ = $1; }
 		;
 
+fcn_handle	: '@' FCN_HANDLE
+		  {
+		    $$ = make_fcn_handle ($2);
+		    lexer_flags.looking_at_function_handle--;
+		  }
+		;
+
 fcn_handle	: FCN_HANDLE
 		  { $$ = make_fcn_handle ($1); }
 		;