From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: To: sisyphus From: Alex Ott Date: Tue, 17 Sep 2002 20:30:35 +0400 Message-ID: User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2 (i586-alt-linux-gnu) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Subject: [sisyphus] emacs-jdee Sender: sisyphus-admin@altlinux.ru Errors-To: sisyphus-admin@altlinux.ru X-BeenThere: sisyphus@altlinux.ru X-Mailman-Version: 2.0.13 Precedence: bulk Reply-To: sisyphus@altlinux.ru List-Unsubscribe: , List-Id: List-Post: List-Help: List-Subscribe: , List-Archive: Archived-At: List-Archive: --=-=-= Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 8bit Привет всем заинтересованым я поисследовал вопрос с новой бетой -- это пока мои размышления. Патч для правильной работы с пустыми target в jde-ant-build прилогается -- он прост. Остается открытым вопрос про использование ant, который поставлен из rpm -- не совсем корректно формируется строка запуска. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=jdee-2.2.9-ant.patch diff -uwbr jde-2.2.9beta12/lisp/jde-ant.el jde-2.2.9beta12-my/lisp/jde-ant.el --- jde-2.2.9beta12/lisp/jde-ant.el 2002-09-11 06:24:56 +0400 +++ jde-2.2.9beta12-my/lisp/jde-ant.el 2002-09-17 20:05:59 +0400 @@ -439,13 +439,14 @@ (defun jde-ant-escape (target) "Looks for \ characters and escape them, i.e. \\" - (let (temp c) + (let ((temp nil) c) + (when (not (null target)) (while (not (string= target "")) (setq c (substring target 0 1)) (if (string= c "\\") (setq temp (concat temp c))) (setq temp (concat temp c)) - (setq target (substring target 1))) + (setq target (substring target 1)))) temp)) (defun jde-ant-compile-internal (command error-message) --=-=-= -- With best wishes, Alex Ott ------------------------------- Jet Infosystems, Moscow, Russia mailto: ottalex@narod.ru http://xtalk.msk.su/~ott/ ICQ #22005116 --=-=-=--