~ubuntu-branches/ubuntu/quantal/texmacs/quantal

« back to all changes in this revision

Viewing changes to src/Kernel/Types/space.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (1.2.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100423070940-juy8n05xs1b6au8i
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
    (spc1->max != spc2->max);
61
61
}
62
62
 
63
 
ostream&
64
 
operator << (ostream& out, space spc) {
 
63
tm_ostream&
 
64
operator << (tm_ostream& out, space spc) {
65
65
  out << "[ " << spc->min << ", " << spc->def << ", " << spc->max << " ]";
66
66
  return out;
67
67
}