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

« back to all changes in this revision

Viewing changes to src/Data/String/analyze.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Atsuhito KOHDA
  • Date: 2010-04-23 07:09:40 UTC
  • mfrom: (4.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100423070940-72mjdmdepfgrvo8f
Tags: 1:1.0.7.4-2
Re-upload, former upload failed with wrong diff.gz perhaps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
770
770
 
771
771
string
772
772
escape_sh (string s) {
773
 
#ifdef OS_WIN32
 
773
#if defined (__MINGW__) || defined (__MINGW32__) || defined (OS_WIN32)
774
774
  return raw_quote (s);
775
775
#else
776
776
  int i, n= N(s);