diff libinterp/parse-tree/lex.ll @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents 5db5619fe54e fe689210525c
children 4197fc428c7d
line wrap: on
line diff
--- a/libinterp/parse-tree/lex.ll	Tue Jan 20 09:55:41 2015 -0500
+++ b/libinterp/parse-tree/lex.ll	Tue Jan 20 10:24:46 2015 -0500
@@ -181,7 +181,7 @@
         } \
     } \
   while (0)
-    
+
 #define CMD_OR_UNARY_OP(PATTERN, TOK, COMPAT) \
  \
   do \
@@ -764,7 +764,7 @@
                     looks_like_block_comment = false;
                     break;
                   }
-              }      
+              }
 
             if (looks_like_block_comment)
               {
@@ -799,7 +799,7 @@
 
     curr_lexer->xunput (yytext[0]);
 
-    curr_lexer->finish_comment (octave_comment_elt::full_line);  
+    curr_lexer->finish_comment (octave_comment_elt::full_line);
 
     curr_lexer->pop_start_state ();
   }
@@ -1991,7 +1991,7 @@
   looking_at_decl_list = false;
   looking_at_initializer_expression = false;
   looking_at_matrix_or_assign_lhs = false;
-  looking_for_object_index = false; 
+  looking_for_object_index = false;
   looking_at_indirect_ref = false;
   parsing_class_method = false;
   parsing_classdef = false;
@@ -3410,7 +3410,7 @@
     {
       std::cerr << "R: ";
       display_token (tok);
-      std::cerr << std::endl; 
+      std::cerr << std::endl;
     }
 
   return tok;
@@ -3449,7 +3449,7 @@
 
   if (input_buf.empty () && ! input_buf.at_eof ())
     input_buf.fill (std::string (1, static_cast<char> (1)), false);
- 
+
   if (! input_buf.empty ())
     status = input_buf.copy_chunk (buf, max_size);
   else