comparison src/message.c @ 31140:a52697bcffa6 v9.0.0904

patch 9.0.0904: various comment and indent flaws Commit: https://github.com/vim/vim/commit/88456cd3c49a3dd1fda17cf350daa9b8216b1aa6 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 18 22:14:09 2022 +0000 patch 9.0.0904: various comment and indent flaws Problem: Various comment and indent flaws. Solution: Improve comments and indenting.
author Bram Moolenaar <Bram@vim.org>
date Fri, 18 Nov 2022 23:15:04 +0100
parents c7983f593fa7
children 68d13970fe8b
comparison
equal deleted inserted replaced
31139:20cf2080f1ee 31140:a52697bcffa6
1309 || c == K_RIGHTMOUSE 1309 || c == K_RIGHTMOUSE
1310 || c == K_X1MOUSE 1310 || c == K_X1MOUSE
1311 || c == K_X2MOUSE)) 1311 || c == K_X2MOUSE))
1312 ); 1312 );
1313 ui_breakcheck(); 1313 ui_breakcheck();
1314 /* 1314
1315 * Avoid that the mouse-up event causes visual mode to start. 1315 // Avoid that the mouse-up event causes Visual mode to start.
1316 */
1317 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE 1316 if (c == K_LEFTMOUSE || c == K_MIDDLEMOUSE || c == K_RIGHTMOUSE
1318 || c == K_X1MOUSE || c == K_X2MOUSE) 1317 || c == K_X1MOUSE || c == K_X2MOUSE)
1319 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0); 1318 (void)jump_to_mouse(MOUSE_SETPOS, NULL, 0);
1320 else if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C) 1319 else if (vim_strchr((char_u *)"\r\n ", c) == NULL && c != Ctrl_C)
1321 { 1320 {