diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-18 22:24:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-18 22:24:33 +0900 |
commit | 3b0c3b8206964b85bf3716c962d26dd15c4f285f (patch) | |
tree | 2f0973dbf96c2892d19a55b6f846f130e7399a48 /debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt | |
parent | ff287d2f48d4f4253bf84f19bd7fe937b61ede45 (diff) | |
download | extra-dependencies-master.tar.gz extra-dependencies-master.zip |
It is no longer necessary to maintain a customize trinity version.
Upstream version can be used as is.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt deleted file mode 100644 index 1a428044..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/documentation/Tracking.txt +++ /dev/null @@ -1,54 +0,0 @@ -2020-11-09 - -Tracking is used to put some marks within a copy of the source and -in the log file. uncrustify generate a HTML file with the marks. - -Using a browser, one can see where, which options are working. - -The command option is: - -uncrustify --tracking space:Track.html -c config-FILE -f source-FILE -L A 2>A.txt -uncrustify --tracking nl:Track.html -c config-FILE -f source-FILE -L A 2>A.txt -uncrustify --tracking start:Track.html -c config-FILE -f source-FILE -L A 2>A.txt - -Tracking puts a red "M" in the source to show where the options are working. -A tracking number is used and written in the Track.html file and the output file A.txt -to make possible to link the changes together. - -An example: - -tracking.cpp -{ - a = b + 111-55; -} - -The config file: - -indent_with_tabs = 0 -sp_arith = force -sp_assign = force - -The tracking file is: - -<html> -<head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"/> - <title>Uncrustify: where do the Spaces options work</title> -</head> -<body lang="en-US"> -<p> -</p> -<pre> -{ - a<a title="1,8,sp_assign"><font color="red">M</font></a>=<a title="2,9,16,sp_assign"><font color="red">M</font>< -/a>b<a title="3,10,17,22,sp_arith"><font color="red">M</font></a>+<a title="4,11,18,23,27,sp_arith"><font color="red">M< -/font></a>111<a title="5,12,19,24,28,31,sp_arith"><font color="red">M</font></a>-<a title="6,13,20,25,29,32,34,sp_arith" -><font color="red">M</font></a>55<a title="7,14,21,26,30,33,35,36,sp_before_semi"><font color="red">M</font></a>; -} -</pre> -</body> -</html> - -Use it with a browser and you can see the red "M"s. -Let put the cursor on the "M"s, and you see the tracking number and the option used. -(look at the picture track.jpg) |