]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
docs: Clarify SGR as Select Graphic Rendition
authorAlistair Thomas <astavale@yahoo.co.uk>
Wed, 6 Sep 2017 10:03:19 +0000 (11:03 +0100)
committerRico Tzschichholz <ricotz@ubuntu.com>
Wed, 6 Sep 2017 10:20:38 +0000 (12:20 +0200)
libvaladoc/errorreporter.vala
vala/valareport.vala

index c8d09cbe570863b97a549c9e023029d645e4dab5..ec189528cf0ded5182d862f2ca54c8ed7a7f6a5c 100644 (file)
@@ -26,67 +26,67 @@ public class Valadoc.ErrorReporter : Object {
        private int _errors = 0;
 
        /**
-        * SGR end tag
+        * SGR (Select Graphic Rendition) end tag
         */
        private const string ANSI_COLOR_END = "\x1b[0m";
 
        /**
-        * SGR start tag for source location
+        * SGR (Select Graphic Rendition) start tag for source location
         */
        private string locus_color_start = "";
 
        /**
-        * SGR end tag for source location
+        * SGR (Select Graphic Rendition) end tag for source location
         */
        private unowned string locus_color_end = "";
 
        /**
-        * SGR start tag for warning titles
+        * SGR (Select Graphic Rendition) start tag for warning titles
         */
        private string warning_color_start = "";
 
        /**
-        * SGR end tag for warning titles
+        * SGR (Select Graphic Rendition) end tag for warning titles
         */
        private unowned string warning_color_end = "";
 
        /**
-        * SGR start tag for error titles
+        * SGR (Select Graphic Rendition) start tag for error titles
         */
        private string error_color_start = "";
 
        /**
-        * SGR end tag for error titles
+        * SGR (Select Graphic Rendition) end tag for error titles
         */
        private unowned string error_color_end = "";
 
        /**
-        * SGR start tag for note titles
+        * SGR (Select Graphic Rendition) start tag for note titles
         */
        private string note_color_start = "";
 
        /**
-        * SGR end tag for note titles
+        * SGR (Select Graphic Rendition) end tag for note titles
         */
        private unowned string note_color_end = "";
 
        /**
-        * SGR start tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) start tag for caret line (^^^)
         */
        private string caret_color_start = "";
 
        /**
-        * SGR end tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) end tag for caret line (^^^)
         */
        private unowned string caret_color_end = "";
 
        /**
-        * SGR start tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) start tag for quotes line ('...', `...`, `...')
         */
        private string quote_color_start = "";
 
        /**
-        * SGR end tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) end tag for quotes line ('...', `...`, `...')
         */
        private unowned string quote_color_end = "";
 
index de867b06669d3682a5478b9321050c4116cb9f18..3015ea3e4588ba415b3c573cfe02aef611de2390 100644 (file)
@@ -34,67 +34,67 @@ public class Vala.Report {
        }
 
        /**
-        * SGR end tag
+        * SGR (Select Graphic Rendition) end tag
         */
        private const string ANSI_COLOR_END = "\x1b[0m";
 
        /**
-        * SGR start tag for source location
+        * SGR (Select Graphic Rendition) start tag for source location
         */
        private string locus_color_start = "";
 
        /**
-        * SGR end tag for source location
+        * SGR (Select Graphic Rendition) end tag for source location
         */
        private unowned string locus_color_end = "";
 
        /**
-        * SGR start tag for warning titles
+        * SGR (Select Graphic Rendition) start tag for warning titles
         */
        private string warning_color_start = "";
 
        /**
-        * SGR end tag for warning titles
+        * SGR (Select Graphic Rendition) end tag for warning titles
         */
        private unowned string warning_color_end = "";
 
        /**
-        * SGR start tag for error titles
+        * SGR (Select Graphic Rendition) start tag for error titles
         */
        private string error_color_start = "";
 
        /**
-        * SGR end tag for error titles
+        * SGR (Select Graphic Rendition) end tag for error titles
         */
        private unowned string error_color_end = "";
 
        /**
-        * SGR start tag for note titles
+        * SGR (Select Graphic Rendition) start tag for note titles
         */
        private string note_color_start = "";
 
        /**
-        * SGR end tag for note titles
+        * SGR (Select Graphic Rendition) end tag for note titles
         */
        private unowned string note_color_end = "";
 
        /**
-        * SGR start tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) start tag for caret line (^^^)
         */
        private string caret_color_start = "";
 
        /**
-        * SGR end tag for caret line (^^^)
+        * SGR (Select Graphic Rendition) end tag for caret line (^^^)
         */
        private unowned string caret_color_end = "";
 
        /**
-        * SGR start tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) start tag for quotes line ('...', `...`, `...')
         */
        private string quote_color_start = "";
 
        /**
-        * SGR end tag for quotes line ('', ``, `')
+        * SGR (Select Graphic Rendition) end tag for quotes line ('...', `...`, `...')
         */
        private unowned string quote_color_end = "";