mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.0989: various small code ugliness
Problem: Various small code ugliness. Solution: Remove pointless NULL checks. Fix function calls. Fix typos. (Dominique Pelle, closes #4060)
This commit is contained in:
@@ -7015,7 +7015,7 @@ gui_mch_drawsign(int row, int col, int typenr)
|
||||
(double)(MIN(height, SIGN_HEIGHT))) < 1.15)
|
||||
{
|
||||
/* Change the aspect ratio by at most 15% to fill the
|
||||
* available space completly. */
|
||||
* available space completely. */
|
||||
height = (double)SIGN_HEIGHT * SIGN_ASPECT / aspect;
|
||||
height = MIN(height, SIGN_HEIGHT);
|
||||
}
|
||||
|
Reference in New Issue
Block a user