comparison doc/interpreter/munge-texi.cc @ 3576:168277402d7c

[project @ 2000-02-04 11:09:38 by jwe]
author jwe
date Fri, 04 Feb 2000 11:12:34 +0000
parents 7576a76f6d7b
children 34ef135b29fa
comparison
equal deleted inserted replaced
3575:7576a76f6d7b 3576:168277402d7c
46 std::cerr << "usage: munge-texi -d DOCSTRING-FILE file ...\n"; 46 std::cerr << "usage: munge-texi -d DOCSTRING-FILE file ...\n";
47 exit (1); 47 exit (1);
48 } 48 }
49 49
50 static std::string 50 static std::string
51 extract_symbol_name (istream& is) 51 extract_symbol_name (std::istream& is)
52 { 52 {
53 std::string symbol_name; 53 std::string symbol_name;
54 54
55 int c; 55 int c;
56 while ((c = is.get ()) != EOF && c != '\n') 56 while ((c = is.get ()) != EOF && c != '\n')