diff src/ops.c @ 11131:8d9ecf09183a v8.0.0453

patch 8.0.0453: adding fold marker creates new comment commit https://github.com/vim/vim/commit/025a6b708a9bff54c73fb9c641b980da19e943a9 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 12 20:37:21 2017 +0100 patch 8.0.0453: adding fold marker creates new comment Problem: Adding fold marker creates new comment. Solution: Use an existing comment if possible. (LemonBoy, closes https://github.com/vim/vim/issues/1549)
author Christian Brabandt <cb@256bit.org>
date Sun, 12 Mar 2017 20:45:04 +0100
parents f4ea50924c6d
children 501f46f7644c
line wrap: on
line diff
--- a/src/ops.c
+++ b/src/ops.c
@@ -113,9 +113,6 @@ static void	copy_yank_reg(yankreg_T *reg
 static void	may_set_selection(void);
 #endif
 static void	dis_msg(char_u *p, int skip_esc);
-#if defined(FEAT_COMMENTS) || defined(PROTO)
-static char_u	*skip_comment(char_u *line, int process, int include_space, int *is_comment);
-#endif
 static void	block_prep(oparg_T *oap, struct block_def *, linenr_T, int);
 static int	do_addsub(int op_type, pos_T *pos, int length, linenr_T Prenum1);
 #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
@@ -4301,7 +4298,7 @@ dis_msg(
  * is_comment - will indicate whether the current line ends with an unclosed
  *		comment.
  */
-    static char_u *
+    char_u *
 skip_comment(
     char_u   *line,
     int      process,