comparison src/beval.c @ 17415:6f15977fb40e v8.1.1706

patch 8.1.1706: typo in #ifdef commit https://github.com/vim/vim/commit/99a764bccd995a6cfe3206909f0076ef84d77506 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 17 20:01:48 2019 +0200 patch 8.1.1706: typo in #ifdef Problem: Typo in #ifdef. Solution: Change PROT to PROTO.
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Jul 2019 20:15:06 +0200
parents 8813e1626e0a
children e685de8a1ac6
comparison
equal deleted inserted replaced
17414:3a7b7dbf70f1 17415:6f15977fb40e
8 * See README.txt for an overview of the Vim source code. 8 * See README.txt for an overview of the Vim source code.
9 */ 9 */
10 10
11 #include "vim.h" 11 #include "vim.h"
12 12
13 #if defined(FEAT_BEVAL) || defined(FEAT_TEXT_PROP) || defined(PROT) 13 #if defined(FEAT_BEVAL) || defined(FEAT_TEXT_PROP) || defined(PROTO)
14 /* 14 /*
15 * Find text under the mouse position "row" / "col". 15 * Find text under the mouse position "row" / "col".
16 * If "getword" is TRUE the returned text in "*textp" is not the whole line but 16 * If "getword" is TRUE the returned text in "*textp" is not the whole line but
17 * the relevant word in allocated memory. 17 * the relevant word in allocated memory.
18 * Return OK if found. 18 * Return OK if found.