using anydot's memcpy-approach in drawtext, however it still looks awkward to me
This commit is contained in:
		
							parent
							
								
									c26e22ccee
								
							
						
					
					
						commit
						c8eaab21b6
					
				
							
								
								
									
										2
									
								
								dwm.c
								
								
								
								
							
							
						
						
									
										2
									
								
								dwm.c
								
								
								
								
							| 
						 | 
				
			
			@ -572,7 +572,7 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {
 | 
			
		|||
	if(!len)
 | 
			
		||||
		return;
 | 
			
		||||
	if(len < olen)
 | 
			
		||||
		strncpy(&buf[MAX(0, len - 3)], "...", len);
 | 
			
		||||
		memcpy(&buf[MAX(0, len - 3)], "...", 3);
 | 
			
		||||
	XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]);
 | 
			
		||||
	if(dc.font.set)
 | 
			
		||||
		XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue