[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tramp (2.0.36); su and sudo hangs on FreeBSD when saving file
From: |
Norbert Koch |
Subject: |
Re: tramp (2.0.36); su and sudo hangs on FreeBSD when saving file |
Date: |
Mon, 01 Sep 2003 18:43:02 +0200 |
User-agent: |
Gnus/5.1003 (Gnus v5.10.3) XEmacs/21.4 (Rational FORTRAN, berkeley-unix) |
address@hidden writes:
> Hm. I thought I had augmented tramp-shell-prompt-pattern, already?
So did I :-)
> If it's been corrected in the CVS but not in the XEmacs package, it would be
> great if somebody did a release. See signature for why I can't do it
> myself.
If you have something to make a package from, I'd be more than happy
to (pre-)release it. I'm using the CVS sources, though. The
variable's value is
Value: "^[^#$%>\n]*[#$%>] *\\(\\[[0-9;]*[a-zA-Z] *\\)*"
Is this the newest one you know about?
BTW, I've just stumbled across an error in the texi's Makefile
(generated). I think the following patch is correct. If you prefer
you can check for both share and lib as in the case of lisp dir, but
standard is lib (xemacs is a sibling to xemacs-$version which holds
the core information).
norbert.
2003-09-01 Norbert Koch <address@hidden>
* aclocal.m4 (AC_PATH_INFODIR): Fix path to xemacs site-packages.
Index: aclocal.m4
===================================================================
RCS file: /cvsroot/tramp/tramp/aclocal.m4,v
retrieving revision 2.5
diff -u -r2.5 aclocal.m4
--- aclocal.m4 14 Jul 2003 21:38:14 -0000 2.5
+++ aclocal.m4 1 Sep 2003 16:32:12 -0000
@@ -166,8 +166,8 @@
dnl Set default value. This must be an absolute path.
if test "$infodir" = "\${prefix}/info"; then
if test "$EMACS_INFO" = "xemacs"; then
- infodir="\$(prefix)/${EMACS_INFO}/site-packages/info"
- infodir_default="${theprefix}/${EMACS_INFO}/site-packages/info"
+ infodir="\$(prefix)/lib/${EMACS_INFO}/site-packages/info"
+ infodir_default="${theprefix}/lib/${EMACS_INFO}/site-packages/info"
else
infodir="\$(prefix)/info"
infodir_default="${theprefix}/info"