forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpp2latex-2.3.patch
44 lines (41 loc) · 1.21 KB
/
cpp2latex-2.3.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--- main.cpp Thu Mar 6 08:15:36 2003
+++ main.cpp Tue Jan 24 21:47:17 2006
@@ -27,12 +27,14 @@
#include <stdio.h>
#include <getopt.h>
+using namespace std;
+
struct replace{
std::string voraus;
std::string ersetzt;
};
-std::vector <replace> rules;
+std::vector<struct replace> rules;
std::string syntax( std::ifstream *src, char *c );
void initReplace();
bool satzzeichen( char c );
@@ -162,9 +164,13 @@
if( comment && !comment1 )
{
file.get(c);
- if(c=='/') { out+="/}"; comment=false; }
- else { if(c=='\n') out+="\\\\"; }
- if( !( (c=='*')||(c=='/') )) out+=c;
+ if(c=='/') {
+ out+="/}";
+ comment=false;
+ } else if (c=='\n') out+="\\\\";
+ /* .alex. 1 line substitution*/
+ else file.seekg(-1,ios::cur);
+ //if( !( (c=='*')||(c=='/') )) out+=c;
}
break;
@@ -323,7 +329,7 @@
/** initialize the replacementrules */
void initReplace()
{
-replace dummy;
+ struct replace dummy;
dummy.voraus = "and"; dummy.ersetzt = "\\textbf{and}"; rules.push_back(dummy);
dummy.voraus = "and_eq"; dummy.ersetzt = "\\textbf{and\\underline\\ eq}"; rules.push_back(dummy);
dummy.voraus = "asm"; dummy.ersetzt = "\\textbf{asm}"; rules.push_back(dummy);