delta
                                
                                 delta copied to clipboard
                                
                                    delta copied to clipboard
                            
                            
                            
                        refactor: avoid strange round-trip of draw_fn arguments
- There is a strange round-trip of draw_fnarguments:
let (draw_fn, pad, style) = draw::get_draw_function();
draw_fn(pad, style, ...);
Refactor code to avoid the unnecessary round-trip.
- Although format!macro is very powerful, it introduces overhead of memory allocation on the heap compared to&str. Therefore, whenformat!macro is unnecessary, we should avoid using it.