Changeset 69167 in vbox for trunk/src/bldprogs
- Timestamp:
- Oct 23, 2017 3:53:14 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118478
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/scmrw.cpp
r69166 r69167 218 218 static RTSTRTUPLE const g_aCopyrightCommentStart[] = 219 219 { 220 RT_STR_TUPLE("<invalid> "),221 RT_STR_TUPLE("/*"),222 RT_STR_TUPLE("#"),223 RT_STR_TUPLE("\"\"\""),224 RT_STR_TUPLE(";"),225 RT_STR_TUPLE("REM"),226 RT_STR_TUPLE("rem"),227 RT_STR_TUPLE("Rem"),228 RT_STR_TUPLE("<end>"),220 { RT_STR_TUPLE("<invalid> ") }, 221 { RT_STR_TUPLE("/*") }, 222 { RT_STR_TUPLE("#") }, 223 { RT_STR_TUPLE("\"\"\"") }, 224 { RT_STR_TUPLE(";") }, 225 { RT_STR_TUPLE("REM") }, 226 { RT_STR_TUPLE("rem") }, 227 { RT_STR_TUPLE("Rem") }, 228 { RT_STR_TUPLE("<end>") }, 229 229 }; 230 230 … … 232 232 static RTSTRTUPLE const g_aCopyrightCommentPrefix[] = 233 233 { 234 RT_STR_TUPLE("<invalid> "),235 RT_STR_TUPLE(" * "),236 RT_STR_TUPLE("# "),237 RT_STR_TUPLE(""),238 RT_STR_TUPLE("; "),239 RT_STR_TUPLE("REM "),240 RT_STR_TUPLE("rem "),241 RT_STR_TUPLE("Rem "),242 RT_STR_TUPLE("<end>"),234 { RT_STR_TUPLE("<invalid> ") }, 235 { RT_STR_TUPLE(" * ") }, 236 { RT_STR_TUPLE("# ") }, 237 { RT_STR_TUPLE("") }, 238 { RT_STR_TUPLE("; ") }, 239 { RT_STR_TUPLE("REM ") }, 240 { RT_STR_TUPLE("rem ") }, 241 { RT_STR_TUPLE("Rem ") }, 242 { RT_STR_TUPLE("<end>") }, 243 243 }; 244 244 … … 246 246 static RTSTRTUPLE const g_aCopyrightCommentEmpty[] = 247 247 { 248 RT_STR_TUPLE("<invalid>"),249 RT_STR_TUPLE(" *"),250 RT_STR_TUPLE("#"),251 RT_STR_TUPLE(""),252 RT_STR_TUPLE(";"),253 RT_STR_TUPLE("REM"),254 RT_STR_TUPLE("rem"),255 RT_STR_TUPLE("Rem"),256 RT_STR_TUPLE("<end>"),248 { RT_STR_TUPLE("<invalid>") }, 249 { RT_STR_TUPLE(" *") }, 250 { RT_STR_TUPLE("#") }, 251 { RT_STR_TUPLE("") }, 252 { RT_STR_TUPLE(";") }, 253 { RT_STR_TUPLE("REM") }, 254 { RT_STR_TUPLE("rem") }, 255 { RT_STR_TUPLE("Rem") }, 256 { RT_STR_TUPLE("<end>") }, 257 257 }; 258 258 … … 260 260 static RTSTRTUPLE const g_aCopyrightCommentEnd[] = 261 261 { 262 RT_STR_TUPLE("<invalid> "),263 RT_STR_TUPLE(" */"),264 RT_STR_TUPLE("#"),265 RT_STR_TUPLE("\"\"\""),266 RT_STR_TUPLE(";"),267 RT_STR_TUPLE("REM"),268 RT_STR_TUPLE("rem"),269 RT_STR_TUPLE("Rem"),270 RT_STR_TUPLE("<end>"),262 { RT_STR_TUPLE("<invalid> ") }, 263 { RT_STR_TUPLE(" */") }, 264 { RT_STR_TUPLE("#") }, 265 { RT_STR_TUPLE("\"\"\"") }, 266 { RT_STR_TUPLE(";") }, 267 { RT_STR_TUPLE("REM") }, 268 { RT_STR_TUPLE("rem") }, 269 { RT_STR_TUPLE("Rem") }, 270 { RT_STR_TUPLE("<end>") }, 271 271 }; 272 272
Note:
See TracChangeset
for help on using the changeset viewer.