From 402472e7c27fc825d796bf2f2ceed2159b6f4813 Mon Sep 17 00:00:00 2001 From: mgubi Date: Mon, 25 May 2009 18:19:19 +0000 Subject: [PATCH] fix for exe path handling git-svn-id: svn://svn.savannah.gnu.org/texmacs/trunk@2706 64cb5145-927a-446d-8aed-2fb7b4773692 --- src/src/Texmacs/Texmacs/texmacs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/src/Texmacs/Texmacs/texmacs.cpp b/src/src/Texmacs/Texmacs/texmacs.cpp index f9619d45..bceeb0b3 100644 --- a/src/src/Texmacs/Texmacs/texmacs.cpp +++ b/src/src/Texmacs/Texmacs/texmacs.cpp @@ -59,9 +59,9 @@ TeXmacs_init_paths (int& argc, char** argv) { #ifdef QTTEXMACS url exedir = url_system (qt_application_directory ()); #else - url exedir = url_system(argv[0]); + url exedir = url_system(argv[0]) * ".." ; if (! is_rooted(exedir)) { - exedir = url_pwd() * exedir * ".."; + exedir = url_pwd() * exedir ; } #endif -- 2.11.4.GIT