mirror of
				https://github.com/rm-dr/daisy
				synced 2025-10-30 22:14:55 -07:00 
			
		
		
		
	Fixed space key
This commit is contained in:
		| @ -95,7 +95,7 @@ cfg_if::cfg_if! { | ||||
| 					match c { | ||||
| 						'a'..='z' | 'A'..='Z' | '0'..='9' | ||||
| 						|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')' | ||||
| 						|'?'|'~'|','|'.'|'['|']' | ||||
| 						|'?'|'~'|','|'.'|'['|']'|' ' | ||||
| 						|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';' | ||||
| 						=> { unsafe { (*state).promptbuffer.add_char(c); } }, | ||||
|  | ||||
|  | ||||
| @ -120,7 +120,7 @@ pub fn main() -> Result<(), std::io::Error> { | ||||
| 					// Only process sane characters | ||||
| 					'a'..='z' | 'A'..='Z' | '0'..='9' | ||||
| 					|'!'|'@'|'#'|'$'|'%'|'^'|'&'|'*'|'('|')' | ||||
| 					|'?'|'~'|','|'.'|'['|']' | ||||
| 					|'?'|'~'|','|'.'|'['|']'|' ' | ||||
| 					|'<'|'>'|'/'|'_'|'-'|':'|'|'|'='|'+'|';' | ||||
| 					=> { pb.add_char(*q); }, | ||||
|  | ||||
|  | ||||
		Reference in New Issue
	
	Block a user