mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 00:56:10 +00:00 
			
		
		
		
	Count line numbers correctly inside strings, reported by Pedro Navarro
in GitHub issue 4325.
This commit is contained in:
		@@ -1627,6 +1627,7 @@ yylex_token_tilde(char **buf, size_t *len)
 | 
			
		||||
static char *
 | 
			
		||||
yylex_token(int ch)
 | 
			
		||||
{
 | 
			
		||||
	struct cmd_parse_state	*ps = &parse_state;
 | 
			
		||||
	char			*buf;
 | 
			
		||||
	size_t			 len;
 | 
			
		||||
	enum { START,
 | 
			
		||||
@@ -1650,10 +1651,13 @@ yylex_token(int ch)
 | 
			
		||||
				ch = '\r';
 | 
			
		||||
			}
 | 
			
		||||
		}
 | 
			
		||||
		if (state == NONE && ch == '\n') {
 | 
			
		||||
		if (ch == '\n') {
 | 
			
		||||
			if (state == NONE) {
 | 
			
		||||
				log_debug("%s: end at EOL", __func__);
 | 
			
		||||
				break;
 | 
			
		||||
			}
 | 
			
		||||
			ps->input->line++;
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		/* Whitespace or ; or } ends a token unless inside quotes. */
 | 
			
		||||
		if (state == NONE && (ch == ' ' || ch == '\t')) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user