]> git.lyx.org Git - features.git/commitdiff
new version of the SpaceLess function
authorLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 2 Nov 1999 21:19:58 +0000 (21:19 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 2 Nov 1999 21:19:58 +0000 (21:19 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@278 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/lyx_cb.C
src/support/filetools.C

index 3a16d19f6e8583d1ce7a41a944bef08164367698..3d697972ed8f69b027aa303c8650f9c0337e6f58 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
 
+       * src/support/filetools.C (SpaceLess): new version of the
+       SpaceLess functions. What problems does this one give? Please
+       report.
+
        * images/banner_bw.xbm: made the arrays unsigned char *
 
 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
index 7adbc5328f0efa82dbb1baebe2cbec9a2822dc8d..f3443ab3e51b562f929a39c45cd36d33e778c8fe 100644 (file)
@@ -561,7 +561,7 @@ int MakeDVIOutput(Buffer *buffer)
 /* wait == true means wait for termination       */
 // The bool should be placed last on the argument line. (Lgb)
 // Returns false if we fail.
-bool RunScript(Buffer *buffer, bool wait,
+bool RunScript(Buffer * buffer, bool wait,
               string const & command, string const & orgname = string(),
               bool need_shell=true)
 {
@@ -828,7 +828,7 @@ bool MenuPreview(Buffer *buffer)
 }
 
 
-void MenuMakeLaTeX(Buffer *buffer)
+void MenuMakeLaTeX(Buffer * buffer)
 {
        if (buffer->text) {
                // Get LaTeX-Filename
index f54f05d4b16a82174452243d7e8e53561cd4e870..0ffc353683146e38e708a18275d3791f61f90a2a 100644 (file)
@@ -74,14 +74,15 @@ string SpaceLess(string const & file)
        
        for (string::size_type i = 0; i < name.length(); ++i) {
                name[i] &= 0x7f; // set 8th bit to 0
-               if (!isalnum(name[i]) && name[i] != '.')
-                       name[i] = '_';
+               if (!isgraph(name[i])) name[i] = '_'; // get rid of cntrl chars
+       };
+       // ok so we scan through the string twice, but who cares.
+       string change("/");
+       string::size_type pos = 0;
+       while ((pos = name.find_first_of(change, pos)) != string::npos) {
+               name[pos] = '-';
        }
        string temp = AddName(path, name);
-       // Replace spaces with underscores, also in directory
-       // No!!! I checked it that it is not necessary.
-       // temp = subst(temp, ' ', '_');
-
        return temp;
 }