adlint 1.18.0 → 1.18.2

Sign up to get free protection for your applications and to get access to all the features.
data/ChangeLog CHANGED
@@ -1,3 +1,16 @@
1
+ Fri Aug 3 13:07:04 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
2
+
3
+ * release.ga : 1.18.2
4
+ - Fix gem installation problem on mswin.
5
+
6
+ Fri Aug 3 13:01:28 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
7
+
8
+ * share/demo/bad_include : Remove `bad_include' demo project.
9
+ * share/demo/bad_charset : Remove `bad_charset' demo project.
10
+
11
+ * share/demo/Makefile : Remove `bad_include' and `bad_charset' demos.
12
+ * MANIFEST : Ditto.
13
+
1
14
  Wed Aug 1 09:39:53 2012 Yutaka Yanoh <yanoh@users.sourceforge.net>
2
15
 
3
16
  * release.ga : 1.18.0
data/MANIFEST CHANGED
@@ -191,16 +191,10 @@ share/demo/arg_points_unset/arg_points_unset.c
191
191
  share/demo/array_range/array_range.c
192
192
  share/demo/bad_bitfields/bad_bitfields.c
193
193
  share/demo/bad_brace/bad_brace.c
194
- share/demo/bad_charset/abcde$.h
195
- share/demo/bad_charset/bad_charset.c
196
194
  share/demo/bad_comment/bad_comment.c
197
195
  share/demo/bad_const/bad_const.c
198
196
  share/demo/bad_conv/bad_conv.c
199
197
  share/demo/bad_enum/bad_enum.c
200
- share/demo/bad_include/bad_include.c
201
- share/demo/bad_include/test"1".h
202
- share/demo/bad_include/test'1'.h
203
- share/demo/bad_include/test'2'.h
204
198
  share/demo/bad_indent/bad_indent.c
205
199
  share/demo/bad_init/bad_init.c
206
200
  share/demo/bad_label/bad_label.c
data/NEWS CHANGED
@@ -21,6 +21,16 @@
21
21
 
22
22
  ++
23
23
 
24
+ === \AdLint 1.18.2 is released (2012-08-03)
25
+
26
+ ==== Changes since the 1.18.0 release
27
+
28
+ * Fix gem installation problem on mswin
29
+
30
+ See the file
31
+ {ChangeLog}[http://adlint.sourceforge.net/pmwiki/upload.d/Main/ChangeLog]
32
+ for more details.
33
+
24
34
  === \AdLint 1.18.0 is released (2012-08-01)
25
35
 
26
36
  ==== Changes since the 1.16.0 release
@@ -67,10 +77,6 @@
67
77
  to make rvalue of the new incremented or decremented value in order to comply
68
78
  with the ISO C99 standard
69
79
 
70
- See the file
71
- {ChangeLog}[http://adlint.sourceforge.net/pmwiki/upload.d/Main/ChangeLog]
72
- for more details.
73
-
74
80
  === \AdLint 1.16.0 is released (2012-07-18)
75
81
 
76
82
  ==== Changes since the 1.14.0 release
@@ -36,7 +36,7 @@
36
36
  # X9999: "Your custom message for the fatal error of #9999."
37
37
  # E9999: "Your custom message for the error of #9999."
38
38
 
39
- version: "1.18.0"
39
+ version: "1.18.2"
40
40
 
41
41
  message_definition:
42
42
  X0001: "An unknown exception `%s' is found."
@@ -36,7 +36,7 @@
36
36
  # X9999: "Your custom message for the fatal error of #9999."
37
37
  # E9999: "Your custom message for the error of #9999."
38
38
 
39
- version: "1.18.0"
39
+ version: "1.18.2"
40
40
 
41
41
  message_definition:
42
42
  X0001: "不明な例外条件 `%s' を検出しました。"
@@ -33,8 +33,8 @@ module AdLint #:nodoc:
33
33
 
34
34
  MAJOR_VERSION = 1
35
35
  MINOR_VERSION = 18
36
- PATCH_VERSION = 0
37
- RELEASE_DATE = "2012-08-01"
36
+ PATCH_VERSION = 2
37
+ RELEASE_DATE = "2012-08-03"
38
38
 
39
39
  TRAITS_SCHEMA_VERSION = "1.0.0"
40
40
 
data/share/demo/Makefile CHANGED
@@ -4,12 +4,10 @@ arg_points_unset \
4
4
  array_range \
5
5
  bad_bitfields \
6
6
  bad_brace \
7
- bad_charset \
8
7
  bad_comment \
9
8
  bad_const \
10
9
  bad_conv \
11
10
  bad_enum \
12
- bad_include \
13
11
  bad_indent \
14
12
  bad_init \
15
13
  bad_label \
@@ -1,8 +1,8 @@
1
1
  <html lang="ja">
2
2
  <head>
3
- <title>AdLint 1.18.0 開発者ガイド</title>
3
+ <title>AdLint 1.18.2 開発者ガイド</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 1.18.0 開発者ガイド">
5
+ <meta name="description" content="AdLint 1.18.2 開発者ガイド">
6
6
  <meta name="generator" content="makeinfo 4.13">
7
7
  <link title="Top" rel="top" href="#Top">
8
8
  <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
44
44
  --></style>
45
45
  </head>
46
46
  <body>
47
- <h1 class="settitle">AdLint 1.18.0 開発者ガイド</h1>
47
+ <h1 class="settitle">AdLint 1.18.2 開発者ガイド</h1>
48
48
  <div class="contents">
49
49
  <h2>Table of Contents</h2>
50
50
  <ul>
@@ -2,7 +2,7 @@
2
2
  @setfilename developers_guide_ja.info
3
3
  @documentlanguage ja
4
4
  @documentencoding utf-8
5
- @settitle AdLint 1.18.0 開発者ガイド
5
+ @settitle AdLint 1.18.2 開発者ガイド
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
@@ -1,8 +1,8 @@
1
1
  <html lang="en">
2
2
  <head>
3
- <title>AdLint 1.18.0 User's Guide</title>
3
+ <title>AdLint 1.18.2 User's Guide</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 1.18.0 User's Guide">
5
+ <meta name="description" content="AdLint 1.18.2 User's Guide">
6
6
  <meta name="generator" content="makeinfo 4.13">
7
7
  <link title="Top" rel="top" href="#Top">
8
8
  <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
44
44
  --></style>
45
45
  </head>
46
46
  <body>
47
- <h1 class="settitle">AdLint 1.18.0 User's Guide</h1>
47
+ <h1 class="settitle">AdLint 1.18.2 User's Guide</h1>
48
48
  <div class="node">
49
49
  <a name="Top"></a>
50
50
  <p><hr>
@@ -2,7 +2,7 @@
2
2
  @setfilename users_guide_en.info
3
3
  @documentlanguage en
4
4
  @documentencoding utf-8
5
- @settitle AdLint 1.18.0 User's Guide
5
+ @settitle AdLint 1.18.2 User's Guide
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
@@ -1,8 +1,8 @@
1
1
  <html lang="ja">
2
2
  <head>
3
- <title>AdLint 1.18.0 利用者ガイド</title>
3
+ <title>AdLint 1.18.2 利用者ガイド</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 1.18.0 利用者ガイド">
5
+ <meta name="description" content="AdLint 1.18.2 利用者ガイド">
6
6
  <meta name="generator" content="makeinfo 4.13">
7
7
  <link title="Top" rel="top" href="#Top">
8
8
  <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
44
44
  --></style>
45
45
  </head>
46
46
  <body>
47
- <h1 class="settitle">AdLint 1.18.0 利用者ガイド</h1>
47
+ <h1 class="settitle">AdLint 1.18.2 利用者ガイド</h1>
48
48
  <div class="node">
49
49
  <a name="Top"></a>
50
50
  <p><hr>
@@ -2,7 +2,7 @@
2
2
  @setfilename users_guide_ja.info
3
3
  @documentlanguage ja
4
4
  @documentencoding utf-8
5
- @settitle AdLint 1.18.0 利用者ガイド
5
+ @settitle AdLint 1.18.2 利用者ガイド
6
6
 
7
7
  @copying
8
8
  Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adlint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.18.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-01 00:00:00.000000000 Z
12
+ date: 2012-08-03 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! 'AdLint is a source code static analyzer.
15
15
 
@@ -224,16 +224,10 @@ files:
224
224
  - share/demo/array_range/array_range.c
225
225
  - share/demo/bad_bitfields/bad_bitfields.c
226
226
  - share/demo/bad_brace/bad_brace.c
227
- - share/demo/bad_charset/abcde$.h
228
- - share/demo/bad_charset/bad_charset.c
229
227
  - share/demo/bad_comment/bad_comment.c
230
228
  - share/demo/bad_const/bad_const.c
231
229
  - share/demo/bad_conv/bad_conv.c
232
230
  - share/demo/bad_enum/bad_enum.c
233
- - share/demo/bad_include/bad_include.c
234
- - share/demo/bad_include/test"1".h
235
- - share/demo/bad_include/test'1'.h
236
- - share/demo/bad_include/test'2'.h
237
231
  - share/demo/bad_indent/bad_indent.c
238
232
  - share/demo/bad_init/bad_init.c
239
233
  - share/demo/bad_label/bad_label.c
File without changes
@@ -1,22 +0,0 @@
1
- #include <abcde$.h>
2
- #include "abcde$.h"
3
-
4
- #define FOO '@'
5
- #define BAR abc$1
6
- #define BAZ abc$2
7
-
8
- /* 日本語 */
9
- /* £ */
10
- /* $ */
11
- int main(void)
12
- {
13
- const unsigned char ch = '@';
14
- const char * const str1 = "foo@bar";
15
- const char * const str2 = "foo bar";
16
- const char * const str3 = "foo`bar";
17
-
18
- return 0;
19
- }
20
- /* 日本語 */
21
- /* £ */
22
- /* $ */
@@ -1,13 +0,0 @@
1
- #include <test'1'.h>
2
- /*#include <test"1".h>*/
3
-
4
- #include "test'2'.h"
5
- #include ".\test'2'.h"
6
- #include ".\\test'2'.h"
7
-
8
- #include_next <test'1'.h>
9
- /*#include_next <test"1".h>*/
10
-
11
- #include_next "test'2'.h"
12
- #include_next ".\test'2'.h"
13
- #include_next ".\\test'2'.h"
File without changes
File without changes
File without changes