Changes in / [7c9ac4a:69d1748]
- Files:
-
- 2 deleted
- 5 edited
-
.gitignore (modified) (1 diff)
-
doc/theses/andrew_beach_MMath/cfalab.sty (modified) (1 diff)
-
doc/theses/andrew_beach_MMath/future.tex (deleted)
-
driver/cc1.cc (modified) (2 diffs)
-
driver/cfa.cc (modified) (2 diffs)
-
tests/.expect/manipulatorsOutput2.arm64.txt (deleted)
-
tests/manipulatorsOutput2.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r7c9ac4a r69d1748 48 48 libcfa/x64-debug/ 49 49 libcfa/x64-nodebug/ 50 libcfa/x64-nolib/ 50 51 libcfa/x86-debug/ 51 52 libcfa/x86-nodebug/ 52 libcfa/arm64-debug/ 53 libcfa/arm64-nodebug/ 53 libcfa/x86-nolib/ 54 libcfa/arm-debug/ 55 libcfa/arm-nodebug/ 56 libcfa/arm-nolib/ 54 57 55 58 # generated by bison and lex from parser.yy and lex.ll -
doc/theses/andrew_beach_MMath/cfalab.sty
r7c9ac4a r69d1748 72 72 \renewcommand\textunderscore{\csuse{cfalab@textunderscore@#1}}} 73 73 74 % This is executed very early in the \begin{document} code.75 \AtEndPreamble{76 \@ifpackageloaded{hyperref}{77 % Convert symbols to pdf compatable forms when required.78 \pdfstringdefDisableCommands{79 \def\CFA{CFA}80 }81 }{}82 }83 84 74 \endinput -
driver/cc1.cc
r7c9ac4a r69d1748 10 10 // Created On : Fri Aug 26 14:23:51 2005 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Nov 17 14:27:08202013 // Update Count : 41 412 // Last Modified On : Sun Aug 16 21:03:02 2020 13 // Update Count : 413 14 14 // 15 15 … … 97 97 } else if ( val == "-CFA" ) { 98 98 CFA_flag = true; 99 } else if ( val == "-save-temps" || val == "--save-temps") {99 } else if ( val == "-save-temps" ) { 100 100 save_temps = true; 101 101 } else if ( prefix( val, "-o=" ) ) { // output file for -CFA -
driver/cfa.cc
r7c9ac4a r69d1748 10 10 // Created On : Tue Aug 20 13:44:49 2002 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Nov 17 14:27:28202013 // Update Count : 4 4012 // Last Modified On : Wed Sep 2 17:59:20 2020 13 // Update Count : 438 14 14 // 15 15 … … 231 231 debugging = true; // symbolic debugging required 232 232 args[nargs++] = argv[i]; // pass flag along 233 } else if ( arg == "-save-temps" || arg == "--save-temps") {233 } else if ( arg == "-save-temps" ) { 234 234 args[nargs++] = argv[i]; // pass flag along 235 235 Putenv( argv, arg ); // save cfa-cpp output -
tests/manipulatorsOutput2.cfa
r7c9ac4a r69d1748 7 7 // Created On : Sat Jun 8 18:04:11 2019 8 8 // Last Modified By : Peter A. Buhr 9 // Last Modified On : Sun Nov 15 08:11:53 202010 // Update Count : 99 // Last Modified On : Mon Jun 10 12:37:57 2019 10 // Update Count : 8 11 11 // 12 12 … … 52 52 // Local Variables: // 53 53 // tab-width: 4 // 54 // compile-command: "cfa -Wall -Wextra manipulatorsOutput2.cfa" //54 // compile-command: "cfa -Wall -Wextra amanipulatorsOutput2.cfa" // 55 55 // End: //
Note:
See TracChangeset
for help on using the changeset viewer.