diff src/lex.l @ 3973:826092b5665e

[project @ 2002-07-04 01:42:46 by jwe]
author jwe
date Thu, 04 Jul 2002 01:42:46 +0000
parents 69b6bd271277
children e2290bf911f0
line wrap: on
line diff
--- a/src/lex.l	Wed Jul 03 18:58:51 2002 +0000
+++ b/src/lex.l	Thu Jul 04 01:42:46 2002 +0000
@@ -480,7 +480,12 @@
 %}
 
 {EL} {
-    return ELLIPSIS;
+    if (lexer_flags.looking_at_parameter_list)
+      return VARARGIN;
+    else if (lexer_flags.looking_at_return_list)
+      return VARARGOUT;
+    else
+      return LEXICAL_ERROR;
   }
 
 %{