comparison src/ex_docmd.c @ 10373:bd674706408a v8.0.0081

commit https://github.com/vim/vim/commit/d4db7719bdfbc54df396eac08d8cbb2389feacf4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 12 19:16:46 2016 +0100 patch 8.0.0081 Problem: Inconsistent function names. Solution: Rename do_cscope to ex_cscope. Clean up comments.
author Christian Brabandt <cb@256bit.org>
date Sat, 12 Nov 2016 19:30:04 +0100
parents 147f45c283e1
children b59df2194b01
comparison
equal deleted inserted replaced
10372:f99b48e4cb62 10373:bd674706408a
241 #endif 241 #endif
242 #if !defined(FEAT_GUI_GTK) 242 #if !defined(FEAT_GUI_GTK)
243 # define ex_helpfind ex_ni 243 # define ex_helpfind ex_ni
244 #endif 244 #endif
245 #ifndef FEAT_CSCOPE 245 #ifndef FEAT_CSCOPE
246 # define do_cscope ex_ni 246 # define ex_cscope ex_ni
247 # define do_scscope ex_ni 247 # define ex_scscope ex_ni
248 # define do_cstag ex_ni 248 # define ex_cstag ex_ni
249 #endif 249 #endif
250 #ifndef FEAT_SYN_HL 250 #ifndef FEAT_SYN_HL
251 # define ex_syntax ex_ni 251 # define ex_syntax ex_ni
252 # define ex_ownsyntax ex_ni 252 # define ex_ownsyntax ex_ni
253 #endif 253 #endif
10425 break; 10425 break;
10426 default: /* ":tag" */ 10426 default: /* ":tag" */
10427 #ifdef FEAT_CSCOPE 10427 #ifdef FEAT_CSCOPE
10428 if (p_cst && *eap->arg != NUL) 10428 if (p_cst && *eap->arg != NUL)
10429 { 10429 {
10430 do_cstag(eap); 10430 ex_cstag(eap);
10431 return; 10431 return;
10432 } 10432 }
10433 #endif 10433 #endif
10434 cmd = DT_TAG; 10434 cmd = DT_TAG;
10435 break; 10435 break;