bug-grep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Changes to grep/src/grep.c


From: Julian Foad
Subject: Re: Changes to grep/src/grep.c
Date: Thu, 07 Jul 2005 00:36:00 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.8) Gecko/20050511

Charles Levert wrote:
Index: grep/src/grep.c
diff -u grep/src/grep.c:1.105 grep/src/grep.c:1.106
--- grep/src/grep.c:1.105       Tue Jun 21 14:18:04 2005
+++ grep/src/grep.c     Tue Jun 21 14:58:50 2005
[...]
+const char *
+color_cap_xm_fct(void)
+{
+  /* This experimental feature should stay undocumented for now.  */
+  pseudo_markup = 1;
+
+  sgr_start = "<grep:%s>";
+  sgr_end   = "</grep:%s>";
+
+  /* The user can just redefine them to the empty string afterwards.  */
+  grep_color     = "matched-text";
+  filename_color = "filename";
+  line_num_color = "line-number";
+  byte_num_color = "byte-offset";
+  sep_color      = "separator";
+  mlines_color   = "matching-line";
+  context_color  = "context-line";
+
+  return NULL;
+}

I don't know if you realised what you were including here. Please could you avoid committing experimental code like this to the stable code base. In fact, please commit a change that removes all traces of that "XM" feature. Sorry if that sounds a bit harsh, but we don't want to get into another "Oh, it's been like that for two years now, it just needs a bit more work and bug fixing..." situation.

- Julian




reply via email to

[Prev in Thread] Current Thread [Next in Thread]