mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-04 09:26:05 +00:00 
			
		
		
		
	Add time and a command count to control mode guards, based on code from
George Nachman.
This commit is contained in:
		@@ -68,8 +68,13 @@ control_callback(struct client *c, int closed, unused void *data)
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		if (cmd_string_parse(line, &cmdlist, NULL, 0, &cause) != 0) {
 | 
			
		||||
			control_write(c, "%%error in line \"%s\": %s", line,
 | 
			
		||||
			    cause);
 | 
			
		||||
			c->cmdq->time = time(NULL);
 | 
			
		||||
			c->cmdq->number++;
 | 
			
		||||
 | 
			
		||||
			cmdq_guard(c->cmdq, "begin");
 | 
			
		||||
			control_write(c, "parse error: %s", cause);
 | 
			
		||||
			cmdq_guard(c->cmdq, "error");
 | 
			
		||||
 | 
			
		||||
			free(cause);
 | 
			
		||||
		} else {
 | 
			
		||||
			cmdq_run(c->cmdq, cmdlist);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user