diff src/lex.l @ 3779:3001e15555e9

[project @ 2001-02-07 04:47:51 by jwe]
author jwe
date Wed, 07 Feb 2001 04:48:01 +0000
parents de61a7ba91f2
children c34164f566f6
line wrap: on
line diff
--- a/src/lex.l	Tue Feb 06 19:07:15 2001 +0000
+++ b/src/lex.l	Wed Feb 07 04:48:01 2001 +0000
@@ -1358,13 +1358,9 @@
 // spacing only really matters in the cases that can be interpreted
 // either as binary ops or prefix unary ops: currently just +, -).
 //
-// Note that
-//
-//   octave> [a +\
-//   > b]
-//
-// (the characters '[' 'a' ' ' '+' '\' LFD 'b' ']') will cause Octave
-// to treat the + as a binary operator.
+// Note that a line continuation directly following a + or - operator
+// (e.g., the characters '[' 'a' ' ' '+' '\' LFD 'b' ']') will be
+// parsed as a binary operator.
 
 static bool
 next_token_is_bin_op (bool spc_prev)