diff src/tag.c @ 28809:d0241e74bfdb v8.2.4928

patch 8.2.4928: various white space and cosmetic mistakes Commit: https://github.com/vim/vim/commit/6ed545e79735f23ff8e650bc2f0967e5a0baedc9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon May 9 20:09:23 2022 +0100 patch 8.2.4928: various white space and cosmetic mistakes Problem: Various white space and cosmetic mistakes. Solution: Change spaces to tabs, improve comments.
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 May 2022 21:15:04 +0200
parents d770568e6c98
children 827d9f2b7a71
line wrap: on
line diff
--- a/src/tag.c
+++ b/src/tag.c
@@ -280,7 +280,7 @@ do_tag(
     int		skip_msg = FALSE;
     char_u	*buf_ffname = curbuf->b_ffname;	    // name to use for
 						    // priority computation
-    int         use_tfu = 1;
+    int		use_tfu = 1;
 
     // remember the matches for the last used tag
     static int		num_matches = 0;
@@ -1422,8 +1422,8 @@ find_tagfunc_tags(
     pos_T       save_pos;
     list_T      *taglist;
     listitem_T  *item;
-    int         ntags = 0;
-    int         result = FAIL;
+    int		ntags = 0;
+    int		result = FAIL;
     typval_T	args[4];
     typval_T	rettv;
     char_u      flagString[4];
@@ -1820,7 +1820,7 @@ findtags_in_help_init(findtags_state_T *
     static int
 findtags_apply_tfu(findtags_state_T *st, char_u *pat, char_u *buf_ffname)
 {
-    int         use_tfu = ((st->flags & TAG_NO_TAGFUNC) == 0);
+    int		use_tfu = ((st->flags & TAG_NO_TAGFUNC) == 0);
     int		retval;
 
     if (!use_tfu || tfu_in_use || *curbuf->b_p_tfu == NUL)