comparison src/gui.c @ 15034:6e4e0d43b20b v8.1.0528

patch 8.1.0528: various typos in comments commit https://github.com/vim/vim/commit/c4568ab37edc01e01f258d64bceddcd01633a268 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 16 16:21:05 2018 +0100 patch 8.1.0528: various typos in comments Problem: Various typos in comments. Solution: Fix the typos.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Nov 2018 16:30:07 +0100
parents 27b9a84395b5
children b91cd042c2fc
comparison
equal deleted inserted replaced
15033:f8b0f1e42f2c 15034:6e4e0d43b20b
5499 p = vim_strsave(fnames[0]); 5499 p = vim_strsave(fnames[0]);
5500 else 5500 else
5501 p = NULL; 5501 p = NULL;
5502 5502
5503 /* Handle the drop, :edit or :split to get to the file. This also 5503 /* Handle the drop, :edit or :split to get to the file. This also
5504 * frees fnames[]. Skip this if there is only one item it's a 5504 * frees fnames[]. Skip this if there is only one item, it's a
5505 * directory and Shift is held down. */ 5505 * directory and Shift is held down. */
5506 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0 5506 if (count == 1 && (modifiers & MOUSE_SHIFT) != 0
5507 && mch_isdir(fnames[0])) 5507 && mch_isdir(fnames[0]))
5508 { 5508 {
5509 vim_free(fnames[0]); 5509 vim_free(fnames[0]);