From unknown Sun Aug 10 08:58:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Resent-From: Joel Ray Holveck Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 08 Jul 2016 08:58:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 23914 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 23914@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.14679682772086 (code B ref -1); Fri, 08 Jul 2016 08:58:02 +0000 Received: (at submit) by debbugs.gnu.org; 8 Jul 2016 08:57:57 +0000 Received: from localhost ([127.0.0.1]:41706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLRbg-0000XZ-K5 for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLRbe-0000XK-1A for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLRbX-0002mw-4F for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38997) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbX-0002me-19 for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41118) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbU-0003IA-0S for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLRbO-0002lx-Qt for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:43 -0400 Received: from thor.piquan.org ([64.81.48.72]:34208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbO-0002lX-Cw for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:38 -0400 Received: from thor.piquan.org (localhost [127.0.0.1]) by thor.piquan.org (8.15.2/8.15.2) with ESMTPS id u688vTGJ075990 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 8 Jul 2016 01:57:29 -0700 (PDT) (envelope-from joelh@piquan.org) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=piquan.org; s=201307; t=1467968249; bh=Cvl6lA/ofBESr8lMuPRyPMnXdSZIBVdr3JyE5cJKJIs=; h=From:To:Subject:Date; b=Y+LpIthifZw2scYL0fZqF1cl+rjzK/rMaCb9HqrUVpn5op0Nxn2BkwfbYrugMoBy/ p96JhjkfLitH6RexIVv3QaGR7FcAdrUs30wAPNombn8hqG5HxjGZ4xd2v+6Y4LCMYo jARH4Dnr8lWRk67JNSN24/nLQ2bOfouVu6kKjRF0= Received: (from joelh@localhost) by thor.piquan.org (8.15.2/8.15.2/Submit) id u688vTxG075989; Fri, 8 Jul 2016 01:57:29 -0700 (PDT) (envelope-from joelh@piquan.org) X-Authentication-Warning: thor.piquan.org: joelh set sender to joelh@piquan.org using -f From: Joel Ray Holveck Precedence: first-class Date: Fri, 08 Jul 2016 01:57:28 -0700 Message-ID: <87bn28a4nb.fsf@thor.piquan.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) On FreeBSD, if tramp-own-remote-path is a member of, then using tramp's sudo method raises an error similar to: byte-code: `/bin/sh -l -c 'echo 9905dea968fdd4a549d307a722e8109b \"$PATH\"'' returns with error On FreeBSD, /bin/sh does not accept the -l flag. bash, dash, and ksh do, but that's not part of the POSIX shell requirements (see http://pubs.opengroup.org/onlinepubs/009695399/utilities/sh.html), and historically the Bourne shell doesn't. This can be traced to tramp-get-remote-path, where it sends the command "%s -l %s 'echo %s \\\"$PATH\\\"'", where the first %s is the shell. I typically remove the -l flag in that function to make my Emacs work. Again, this only applies if tramp-own-remote-path is a member of tramp-remote-path; otherwise, that part of the code isn't invoked. It's not there by default, but it's very useful. In GNU Emacs 24.5.1 (i386-portbld-freebsd10.3, X toolkit, Xaw scroll bars) of 2016-06-01 on thor.piquan.org Configured using: `configure --localstatedir=/var --with-dbus --without-file-notification --with-gconf --with-gif --with-gnutls --with-gsettings --with-jpeg --with-m17n-flt --with-imagemagick --with-libotf --with-png --with-toolkit-scroll-bars --with-rsvg --with-tiff --with-x --with-xft --with-xim --with-xml2 --with-xpm --with-x-toolkit=athena --without-xaw3d --with-sound=oss --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/share/emacs/info/ --build=i386-portbld-freebsd10.3 'CFLAGS=-O2 -pipe -O2 -fno-strict-aliasing -pipe -march=athlon64 -isystem /usr/local/include -fstack-protector' 'CPPFLAGS=-isystem /usr/local/include' 'LDFLAGS= -ltinfo -L/usr/local/lib -Wl,-rpath=/usr/local/lib -fstack-protector'' Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Emacs-Lisp Minor modes in effect: diff-auto-refine-mode: t eldoc-mode: t minibuffer-electric-default-mode: t mail-abbrevs-mode: t iswitchb-mode: t desktop-save-mode: t savehist-mode: t which-function-mode: t auto-insert-mode: t show-paren-mode: t display-time-mode: t recentf-mode: t msb-mode: t shell-dirtrack-mode: t tooltip-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t buffer-read-only: t column-number-mode: t line-number-mode: t transient-mark-mode: t Recent messages: x is undefined i is undefined t is undefined s is undefined Quit Back to top level. Mark saved where search started Mark set Mark saved where search started [2 times] Abbrev mode enabled Load-path shadows: /usr/local/share/emacs/24.5/site-lisp/site-start hides /usr/local/share/emacs/site-lisp/site-start ~/src/elisp/dict hides /usr/local/share/emacs/site-lisp/dict /usr/local/share/emacs/24.5/site-lisp/flim/md4 hides /usr/local/share/emacs/24.5/lisp/md4 /usr/local/share/emacs/24.5/site-lisp/flim/hex-util hides /usr/local/share/emacs/24.5/lisp/hex-util /usr/local/share/emacs/24.5/site-lisp/flim/sasl hides /usr/local/share/emacs/24.5/lisp/net/sasl /usr/local/share/emacs/24.5/site-lisp/flim/sasl-ntlm hides /usr/local/share/emacs/24.5/lisp/net/sasl-ntlm /usr/local/share/emacs/24.5/site-lisp/flim/sasl-digest hides /usr/local/share/emacs/24.5/lisp/net/sasl-digest /usr/local/share/emacs/24.5/site-lisp/flim/sasl-cram hides /usr/local/share/emacs/24.5/lisp/net/sasl-cram /usr/local/share/emacs/24.5/site-lisp/flim/ntlm hides /usr/local/share/emacs/24.5/lisp/net/ntlm /usr/local/share/emacs/24.5/site-lisp/flim/hmac-md5 hides /usr/local/share/emacs/24.5/lisp/net/hmac-md5 /usr/local/share/emacs/24.5/site-lisp/flim/hmac-def hides /usr/local/share/emacs/24.5/lisp/net/hmac-def /usr/local/share/emacs/24.5/site-lisp/semi/smime hides /usr/local/share/emacs/24.5/lisp/gnus/smime /usr/local/share/emacs/24.5/site-lisp/semi/pgg hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg /usr/local/share/emacs/24.5/site-lisp/semi/pgg-pgp5 hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-pgp5 /usr/local/share/emacs/24.5/site-lisp/semi/pgg-pgp hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-pgp /usr/local/share/emacs/24.5/site-lisp/semi/pgg-parse hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-parse /usr/local/share/emacs/24.5/site-lisp/semi/pgg-gpg hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-gpg /usr/local/share/emacs/24.5/site-lisp/semi/pgg-def hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-def Features: (kmacro edebug grep compile ispell cl-indent pp shadow sort mail-extr warnings emacsbug message idna rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mail-utils debug eieio-opt speedbar sb-image ezimage dframe find-func help-mode misearch multi-isearch diff-mode easy-mmode vc-bzr vc-sccs vc-svn vc-cvs vc-rcs vc vc-dispatcher dired-aux dired-x dired add-log vc-git tramp-cmds xterm eldoc jka-compr minibuf-eldef mailabbrev iswitchb icomplete desktop frameset cus-start cus-load savehist vcursor disp-table derived which-func imenu slime-autoloads autoinsert cl-macs paren time server cl gv tramp-cache tramp-sh recentf tree-widget wid-edit msb tramp tramp-compat auth-source eieio byte-opt bytecomp byte-compile cl-extra cl-loaddefs cl-lib cconv eieio-core gnus-util mm-util mail-prsvr password-cache tramp-loaddefs trampver shell pcomplete comint ansi-color ring format-spec advice help-fns easymenu printing ps-print ps-def lpr midnight time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind dynamic-setting system-font-setting font-render-setting x-toolkit x multi-tty emacs) Memory information: ((conses 8 229927 39585) (symbols 24 29501 23) (miscs 20 699 1170) (strings 16 46836 4950) (string-bytes 1 1343106) (vectors 8 19069) (vector-slots 4 483571 17204) (floats 8 400 479) (intervals 28 12307 319) (buffers 512 30)) -- Joel Ray Holveck - joelh@piquan.org Fourth law of programming: Anything that can go wrong wi sendmail: segmentation violation - core dumped From unknown Sun Aug 10 08:58:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Resent-From: Michael Albinus Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 09 Jul 2016 11:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 23914 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Joel Ray Holveck Cc: 23914@debbugs.gnu.org Received: via spool by 23914-submit@debbugs.gnu.org id=B23914.146806432420258 (code B ref 23914); Sat, 09 Jul 2016 11:39:02 +0000 Received: (at 23914) by debbugs.gnu.org; 9 Jul 2016 11:38:44 +0000 Received: from localhost ([127.0.0.1]:43277 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLqap-0005Gf-Jc for submit@debbugs.gnu.org; Sat, 09 Jul 2016 07:38:44 -0400 Received: from mout.gmx.net ([212.227.15.18]:64792) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLqaj-0005GQ-TK for 23914@debbugs.gnu.org; Sat, 09 Jul 2016 07:38:41 -0400 Received: from detlef.gmx.de ([93.209.92.204]) by mail.gmx.com (mrgmx002) with ESMTPSA (Nemesis) id 0MHHZT-1bZqwI3eJH-00E9Oj; Sat, 09 Jul 2016 13:38:30 +0200 From: Michael Albinus In-Reply-To: <87bn28a4nb.fsf@thor.piquan.org> (Joel Ray Holveck's message of "Fri, 08 Jul 2016 01:57:28 -0700") References: <87bn28a4nb.fsf@thor.piquan.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) Date: Sat, 09 Jul 2016 13:38:28 +0200 Message-ID: <8737njt51n.fsf@gmx.de> MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:39PfGPOUhzZDBUi2J7jHjxj4AhvkuoQT2+VTXMScVx7u7Ilt1bL O0asBqPL8SPkZntGCoWSi0oeldTHPERa2vhZfr/QERWeF2aAFhJ303RnsMlby7PlQUDqRxw abeXF9yQhoEb7KtkNfjVN5lM2iaEz+d8mDOP/TZ2o7ZtwHfXzkkx8pQWZKkGtj5LWec8ve3 zNRElJdvL1bv3a60nucLA== X-UI-Out-Filterresults: notjunk:1;V01:K0:KWmujPeRjxQ=:sWyodDIxLghxWXFepCnTV+ RNBoMLJ/jnodSoX1AfqiRexTxQJ2+VmwL//z5HLMDr2Ya3cE+PIWfFvCVgvpWeurTZvHhCACf xU7hUm4+XnffGCjb8z7bG6ke3yjGDm5R9trCMb3wdXbowd9s5ruG1p8NwrgrtKW1LsfhQrgRt W7rujY7Vqk604hTJe/P1n9QtK8wrtC+KBRj4163/2/M5ZVSFF5MxE8fJd/uQVqeoqUzELqGfY t4MypsT7FXoVeFmWiBDtu3lNA9SmDQFgJez5VRDtAarFOeYNd/aswvX4IaONXsL0hTEZPA6u1 Zhu3IlsFgliQyV9pANFiqi1HIJCEVedMKh6QKjwRvyMHjspUK81v3PylNnQulmFRAoiwVv5KI SJPbbG7atas/tXk5vv1xduWtlx6tlOfhtXMzEtmkiCP/DpdLB9vf5G2sJOcIqX2iklyTR7kxA AAOtojP+OveoO6CT5KNh7Qd/psYBg/n1UkhTfy46WAa/wouaptxCjiDZtEdcuwUyC1ZEO6jsm d93aNCQyANdJn9WoNQUMCnNchVvAuBylwJVk6aNkzR+r2leK+N+sQSX/dsculnKmoW1d1cbAU KwG7KTrvWosOFaJa/7Sd49kJabSvUg+Jy98oXptwPZ1596fmEl4A/8aD3Qk7oA0soHWYad9DW 6pTgLB8PAoT+lD0vPY8zmHkr91OGJ90Br04E5QlgNShZQEROYtNoNNgXnldfEg3pLvnoc12/W XNcpcNSuj79gt0YtRtd4Ise8mh5CJiuyEmjZMopp/ENTiblmG7zjsu8RuuVrVtUUeMbGuhY3N YR7ZCF2 X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Joel Ray Holveck writes: Hi Joel, > On FreeBSD, if tramp-own-remote-path is a member of, then using tramp's > sudo method raises an error similar to: > > byte-code: `/bin/sh -l -c 'echo 9905dea968fdd4a549d307a722e8109b \"$PATH\"'' returns with error Well, meanwhile Tramp doesn't raise an error anymore. It simply ignores it, what's not a solution, I know. > On FreeBSD, /bin/sh does not accept the -l flag. bash, dash, and ksh > do, but that's not part of the POSIX shell requirements (see > http://pubs.opengroup.org/onlinepubs/009695399/utilities/sh.html), and > historically the Bourne shell doesn't. Unfortunately, Posix does not specify how to force a login shell, evaluating its ~/.profile and friends. If somebody knows a portable way, how one could determine the $PATH settings of a login shell, I'll add it to Tramp happily. Best regards, Michael. From unknown Sun Aug 10 08:58:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Resent-From: Andreas Schwab Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 09 Jul 2016 12:24:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 23914 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Michael Albinus Cc: Joel Ray Holveck , 23914@debbugs.gnu.org Received: via spool by 23914-submit@debbugs.gnu.org id=B23914.146806698731145 (code B ref 23914); Sat, 09 Jul 2016 12:24:01 +0000 Received: (at 23914) by debbugs.gnu.org; 9 Jul 2016 12:23:07 +0000 Received: from localhost ([127.0.0.1]:43300 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLrHn-00086H-8e for submit@debbugs.gnu.org; Sat, 09 Jul 2016 08:23:07 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:58082) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLrHl-000866-GN for 23914@debbugs.gnu.org; Sat, 09 Jul 2016 08:23:06 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3rmr9M5VgFz3hhtK; Sat, 9 Jul 2016 14:23:03 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3rmr9M3RVzzvkY4; Sat, 9 Jul 2016 14:23:03 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id EYI-hQzdKrSl; Sat, 9 Jul 2016 14:23:02 +0200 (CEST) X-Auth-Info: iLErooRAfy6j6Co/PHs4AlP7OeNtke1fCylITE5KmRBdhSKdt4qwTQF2x+PPX6Bs Received: from igel.home (ppp-88-217-1-232.dynamic.mnet-online.de [88.217.1.232]) by mail.mnet-online.de (Postfix) with ESMTPA; Sat, 9 Jul 2016 14:23:02 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id 2CDDF2C2DBB; Sat, 9 Jul 2016 14:23:02 +0200 (CEST) From: Andreas Schwab References: <87bn28a4nb.fsf@thor.piquan.org> <8737njt51n.fsf@gmx.de> X-Yow: .. I don't know why but, suddenly, I want to discuss declining I.Q. LEVELS with a blue ribbon SENATE SUB-COMMITTEE! Date: Sat, 09 Jul 2016 14:23:02 +0200 In-Reply-To: <8737njt51n.fsf@gmx.de> (Michael Albinus's message of "Sat, 09 Jul 2016 13:38:28 +0200") Message-ID: <87poqngfvd.fsf@linux-m68k.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.95 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Michael Albinus writes: > Unfortunately, Posix does not specify how to force a login shell, That's outside the scope of POSIX. > evaluating its ~/.profile and friends. If somebody knows a portable way, > how one could determine the $PATH settings of a login shell, I'll add it > to Tramp happily. Traditionally, the bourne shell acts as a login shell if argv[0] starts with '-', and that's how login(1) does it. Unfortunately, Emacs does not provide a way to alter the value of argv[0] passed to the inferior. Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From unknown Sun Aug 10 08:58:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Resent-From: Michael Albinus Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 10 Jul 2016 15:08:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 23914 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Andreas Schwab Cc: Joel Ray Holveck , 23914@debbugs.gnu.org Received: via spool by 23914-submit@debbugs.gnu.org id=B23914.14681632563986 (code B ref 23914); Sun, 10 Jul 2016 15:08:02 +0000 Received: (at 23914) by debbugs.gnu.org; 10 Jul 2016 15:07:36 +0000 Received: from localhost ([127.0.0.1]:45286 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bMGKV-00012E-NW for submit@debbugs.gnu.org; Sun, 10 Jul 2016 11:07:35 -0400 Received: from mout.gmx.net ([212.227.17.22]:57417) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bMGKU-00011y-Lt for 23914@debbugs.gnu.org; Sun, 10 Jul 2016 11:07:35 -0400 Received: from detlef.gmx.de ([87.146.32.146]) by mail.gmx.com (mrgmx103) with ESMTPSA (Nemesis) id 0M1FAK-1b6wMg2Mxs-00tGWx; Sun, 10 Jul 2016 17:07:26 +0200 From: Michael Albinus References: <87bn28a4nb.fsf@thor.piquan.org> <8737njt51n.fsf@gmx.de> <87poqngfvd.fsf@linux-m68k.org> Date: Sun, 10 Jul 2016 17:07:24 +0200 In-Reply-To: <87poqngfvd.fsf@linux-m68k.org> (Andreas Schwab's message of "Sat, 09 Jul 2016 14:23:02 +0200") Message-ID: <871t31bkgj.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:uEyOH5OWo8lWycwRdYc15th8VezT3EbQfbhEJNQdOnglW7GVfiO z5S3+N9Y7TqEultio7ZjOghcdv0IbPAJQqOYzy8gMHAdZaoAQKO6FZhNjaqry+jCP4NOot3 S6ESY0bVHmbbUtw/G48jPj9vCfV/7uFzZDQI/P27MZb6D18TjbaaSf2J0I/dG1Mxhtu0JoF v0DbFoHiNk2bJqpgdSDiQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:o9oA88rBCjg=:EW5LxSluBmlhUInjPX/XHc P2DnSJ8cRfM2J5ek0lSqH1qGLNJ2zGbNg8OXR3ymoncF7a93tat+LVnhjOkMSDKM+75TFSJXl BiH/et34ziRLxCraJXhXYUuWpzVNGdHOqNMrn+yMVDTaojXw2fNZ5lU0bMEWSrFftj1xaIvF5 4kTi1qh522ndRW1ffaSJyLrChHaRWvyy29huMXMuWNw2Q0LnteliJBRnUKhvZPK9nG1ZZiu/4 M5SeXz3OWdWe5sXABr7E9N6P9Cpy8lVtxo4wUlVSY3Pvdvbr4t568GqiqlUKM260Zw4lE9Omu 3XrI6wcyHb/3YWPLx1reT6h4ziTcU6+uilwCWsmxIywqfyIY7kn5NOlRjd5xGdPs9ze0mgln4 QZuAY4jvQt3L1TS8kcpIwpHmxFwBtyJoCPrEksGlP9kMAqSiuk4+qTkxMDrHppy8ML/H66xy1 YrwLZfSzMi84qyLKzUk0+5PRS68wgv4f67kOHurKnjCkF4jW+XWIaAdXG/H3G2cp2KFDsuMCO dO7zACdO2Tt1uRrpEpQWjGMdqRUxInZ9oUdf9S15mkmCPkhtD2zZtjwMHPMvAE8b8mQKzZ4SF vjuEJT7rfLcsUqkXMQENxUOhiecrAkvd3970UwOr0gsFB22yYs0qax89cXyAwvY2X+NMgvco7 5VC0d2LZpArBYJs5/EK0PLKEsnhasEh9hhazKZwPfKS/IuLaEGlQpc8V3ZYx/bsrM44IwbdgH 6St7dVAADAy/mJnT8GmAzxAV53vXvYkoVOKSNxFi+dp3wKRng75bf9ZOIiRyqvXhazsLIsfNV MSGj8uc X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Andreas Schwab writes: >> evaluating its ~/.profile and friends. If somebody knows a portable way, >> how one could determine the $PATH settings of a login shell, I'll add it >> to Tramp happily. > > Traditionally, the bourne shell acts as a login shell if argv[0] starts > with '-', and that's how login(1) does it. Unfortunately, Emacs does > not provide a way to alter the value of argv[0] passed to the inferior. This wouldn't help. Tramp needs to invoke a login shell on the remote host. I have added a note to the Tramp manual about this restriction (the remote shell must support -l in order to use tramp-own-remote-path). I have no idea what could be done else, so I propose to close this bug. > Andreas. Best regards, Michael. From unknown Sun Aug 10 08:58:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Resent-From: Michael Albinus Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 20 Aug 2016 10:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 23914 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 23914@debbugs.gnu.org, Joel Ray Holveck Received: via spool by 23914-submit@debbugs.gnu.org id=B23914.147168751823277 (code B ref 23914); Sat, 20 Aug 2016 10:06:02 +0000 Received: (at 23914) by debbugs.gnu.org; 20 Aug 2016 10:05:18 +0000 Received: from localhost ([127.0.0.1]:34733 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bb39R-00063N-Pw for submit@debbugs.gnu.org; Sat, 20 Aug 2016 06:05:18 -0400 Received: from mout.gmx.net ([212.227.15.15]:57523) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bb39Q-000639-5z for 23914@debbugs.gnu.org; Sat, 20 Aug 2016 06:05:16 -0400 Received: from detlef.gmx.de ([93.209.64.27]) by mail.gmx.com (mrgmx003) with ESMTPSA (Nemesis) id 0LeMWL-1anwYj46ur-00q9WV; Sat, 20 Aug 2016 12:05:09 +0200 From: Michael Albinus References: <87bn28a4nb.fsf@thor.piquan.org> <8737njt51n.fsf@gmx.de> <87poqngfvd.fsf@linux-m68k.org> <871t31bkgj.fsf@gmx.de> Date: Sat, 20 Aug 2016 12:05:06 +0200 In-Reply-To: <871t31bkgj.fsf@gmx.de> (Michael Albinus's message of "Sun, 10 Jul 2016 17:07:24 +0200") Message-ID: <87zio7rc19.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Provags-ID: V03:K0:cQw6t3spjZuESD4MzOvy1rh2QpE3x0VGYAKjfr3Pf4wOjyr4Hnt YSSmunXwb87h5UuHBz43LDUpfsksfqju4wL6chvLotg1wwcT9MSlCQ2OrLr0k6Nrxk7yBtY 9Uw3kwcxJN/QF/4LPzfKNglAV+E+GmVjV2ovK0bzOMVUtSE/Hr8oT7sElEVF4krCsu5xB/S 157Ja9k2oOt8xJ/fYEfKQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:vkck17OQkkU=:lqwf3XSfYck/ctygDKhyyM Ph6UThFLLINVNwnZWWoB9Ycp0u/3iLJ+Nh4yHHPLsXFG37TqNcZW4FUvbR2EYYSmKH0YSbUBn 3+ma1eEyD7ss7An1WYJk8gDm/ey5mwy5w0/Yp3dCd7M9nZyquhI5td3T5y+lSZRHht5Cx6eyO sZpph4MYYIkQaGqHvZdGBC8Xp376JN9sLKZ7luwayWt7NpVfRiTVGbZbCDoUyxRMxu5fD7iKp 3J31zLz0CButn2H4BfeTnKIil9mraZhSH+3ZeO6+wRAN2X0/bGGfTkvyTge3qrt+2NDKiZKiP IYEXvIU6qw2Yl2rao8CFqeo/e/JhJCHoY9ihMuOh5FsxDWW6QNSJBxw8DbfU/FuCfS0bQln6s QBunipxhsGerQ/3FvzCnCnv6K1fysDvt0OyWc+IDFAdE6l71IxvwddQV7dT6ndnIQDudMwexQ 5XsfLM0IPRfCwRaoTXw/8HD3JsBdzpJRocbuMkL7oCTeBwHEJbHLSeyh7fre1bDjn49p32Qqa KZzEd9qC9D+dM2tinP+rgJ41GRy+564C8cWt+/dTp0ZW1I+jlfhWc2TPZyyUjBNra0iZI5VUf oYv6I+SpMDTBBbOj/oyTiUj1NQWeEZAUyTId9/ftcL3K35W7dSLCAJV5CzhdcOkYt9SVNf1T6 oFgx3vxd8V/QiZm0W6sxG1lpkghCAea218Ica3Y3QfZhbLJjoKQJ2ksG5VuUrL31/khWaHLgK kO7c1T8fNCYvB02OsRGqKE4f/vA/qyN8xuLXM6fW8H98LD3eMqT9EV23dczCfR5I77PGaL9PM m3d8+wC X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Michael Albinus writes: > I have added a note to the Tramp manual about this restriction (the > remote shell must support -l in order to use tramp-own-remote-path). I > have no idea what could be done else, so I propose to close this bug. Since commit 5126b7d6c201f95fde0d817a64620d152c1c15e1 in Emacs master, Tramp supports the usage of the ENV environment variable. This could be used as alternative in cases the remote shell does not support the "-l" argument. The Tramp manual says: --8<---------------cut here---------------start------------->8--- Setting the =E2=80=98ENV=E2=80=99 environment variable instructs some shell= s to read an initialization file. Per default, TRAMP has disabled this. You could overwrite this behaviour by evaluating (let ((process-environment tramp-remote-process-environment)) (setenv "ENV" "$HOME/.profile") (setq tramp-remote-process-environment process-environment)) --8<---------------cut here---------------end--------------->8--- Could you please check whether this works for you, instead of using `tramp-own-remote-path'? Best regards, Michael. From unknown Sun Aug 10 08:58:54 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Joel Ray Holveck Subject: bug#23914: closed (Re: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used) Message-ID: References: <874m65uwxk.fsf@gmx.de> <87bn28a4nb.fsf@thor.piquan.org> X-Gnu-PR-Message: they-closed 23914 X-Gnu-PR-Package: emacs Reply-To: 23914@debbugs.gnu.org Date: Sun, 28 Aug 2016 08:21:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1472372462-5882-1" This is a multi-part message in MIME format... ------------=_1472372462-5882-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-rem= ote-path is used which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 23914@debbugs.gnu.org. --=20 23914: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D23914 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1472372462-5882-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 23914-done) by debbugs.gnu.org; 28 Aug 2016 08:20:34 +0000 Received: from localhost ([127.0.0.1]:42459 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bdvKT-0001Vq-QM for submit@debbugs.gnu.org; Sun, 28 Aug 2016 04:20:33 -0400 Received: from mout.gmx.net ([212.227.15.19]:61921) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bdvKS-0001Vc-3I for 23914-done@debbugs.gnu.org; Sun, 28 Aug 2016 04:20:32 -0400 Received: from detlef.gmx.de ([87.146.62.18]) by mail.gmx.com (mrgmx003) with ESMTPSA (Nemesis) id 0MVMgI-1bcLQN1oys-00YlHV; Sun, 28 Aug 2016 10:20:25 +0200 From: Michael Albinus To: 23914-done@debbugs.gnu.org Subject: Re: bug#23914: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used References: <87bn28a4nb.fsf@thor.piquan.org> <8737njt51n.fsf@gmx.de> <87poqngfvd.fsf@linux-m68k.org> <871t31bkgj.fsf@gmx.de> <87zio7rc19.fsf@gmx.de> Date: Sun, 28 Aug 2016 10:20:23 +0200 In-Reply-To: <87zio7rc19.fsf@gmx.de> (Michael Albinus's message of "Sat, 20 Aug 2016 12:05:06 +0200") Message-ID: <874m65uwxk.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:sCO5ARrVWvz7v8cw1HMuuOhEm0CwBl2JEcnsIRTvnq9utqXMYxh iFqi4xf7DT1k4EBHlzKCgcjtGhrWu6zQdwVWL7C58QNUh7CNglhWwb2m9FjaxwgLavNa9Rd bdJse1STomw6Oh7PdVh/lnYVZgpsdCeb60Beva3LjCzxA5t934PV+uyeMin1zymSRr060X4 fq4sajfityPc23Rg4C7ng== X-UI-Out-Filterresults: notjunk:1;V01:K0:fX1BxcrG85s=:8Y7sWGtvTIINu3fhmbDwqV kNxdIiDRFg4+/VwdVoxLmsH2KX7w3HpdG+lmIoiwl+nRmV+3ZLfS6ttoN8+Nno1rASNqQC80w IxBV+wG0yMPzx7LrJvG2Du7Au6Z2sC4wXI1Zqu5km6tb9QBtw84G535wBbtIx6nZnaBHf3YN+ gNJhjeZB4BGH/eIuNS7yvN8dJjIgf2hf0S+F1JJ55o6eNTXorTtgZLpgGSwP8tLuPYrinOqBu /hBw23brydzSvwx+VvoBoYkSDBBmHK9JCfoAEqORsGH/+mnP2KGJuq1TaXnjDKzs4HWVkq4Ay ALGeOPzAPeRce3cAT6Qz58z+4z/x2rEFFfWF7uBl8OV52iJpOyc1FddKPFsM3lLjWgBPgdTKB BgNERGfon9HsGg9vMdYlZ0jZb58o1EgTP7Z30Lb5ppvIerUNtspzBe7WSfVBeZyDyD5my0D5R tXc2TtvcZx8JW1UnIE+8cSQwkCUXn3KCbPX1CRTdEpqvVc66Z3/ulj/us2yT3fSDWVE6sfh44 OGD3mEaajEFRRqNUL0MjjoSpArpdA4J2z68avSW60h0YHh4QlijEV6pLykHqD3TUUhA2acyoX WRAaPf79MuFd3kpnXmzrVIFIjqx75LMZVAq9EGcICxz/xsKeCMATInJKmSBibhYYZejizn/Pu DFiAuxaQFAiqmBAKxs/BN+pv3c/C30fmsc8Hq9gQGeVIv/GD1i//GlgeT/P22rEdqTNy9sUqJ Vj7ocFeii6leSTIHiB5+aIjnFkPgDL16+CGu2qrP/YvW8a6zahesJghEPGkyE8NZ824sZ4L+x Mc19pVZ X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 23914-done Cc: Joel Ray Holveck X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) Version: 25.2 > Could you please check whether this works for you, instead of using > `tramp-own-remote-path'? No response, so I'm closing the bug. Feel free to reopen if it doesn't work for you. Best regards, Michael. ------------=_1472372462-5882-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 8 Jul 2016 08:57:57 +0000 Received: from localhost ([127.0.0.1]:41706 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLRbg-0000XZ-K5 for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50170) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bLRbe-0000XK-1A for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLRbX-0002mw-4F for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:48 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:38997) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbX-0002me-19 for submit@debbugs.gnu.org; Fri, 08 Jul 2016 04:57:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41118) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbU-0003IA-0S for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bLRbO-0002lx-Qt for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:43 -0400 Received: from thor.piquan.org ([64.81.48.72]:34208) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bLRbO-0002lX-Cw for bug-gnu-emacs@gnu.org; Fri, 08 Jul 2016 04:57:38 -0400 Received: from thor.piquan.org (localhost [127.0.0.1]) by thor.piquan.org (8.15.2/8.15.2) with ESMTPS id u688vTGJ075990 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Fri, 8 Jul 2016 01:57:29 -0700 (PDT) (envelope-from joelh@piquan.org) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=piquan.org; s=201307; t=1467968249; bh=Cvl6lA/ofBESr8lMuPRyPMnXdSZIBVdr3JyE5cJKJIs=; h=From:To:Subject:Date; b=Y+LpIthifZw2scYL0fZqF1cl+rjzK/rMaCb9HqrUVpn5op0Nxn2BkwfbYrugMoBy/ p96JhjkfLitH6RexIVv3QaGR7FcAdrUs30wAPNombn8hqG5HxjGZ4xd2v+6Y4LCMYo jARH4Dnr8lWRk67JNSN24/nLQ2bOfouVu6kKjRF0= Received: (from joelh@localhost) by thor.piquan.org (8.15.2/8.15.2/Submit) id u688vTxG075989; Fri, 8 Jul 2016 01:57:29 -0700 (PDT) (envelope-from joelh@piquan.org) X-Authentication-Warning: thor.piquan.org: joelh set sender to joelh@piquan.org using -f From: Joel Ray Holveck To: bug-gnu-emacs@gnu.org Subject: 24.5; tramp-get-remote-path fails with some shells if tramp-own-remote-path is used Precedence: first-class Date: Fri, 08 Jul 2016 01:57:28 -0700 Message-ID: <87bn28a4nb.fsf@thor.piquan.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: FreeBSD 9.x X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) On FreeBSD, if tramp-own-remote-path is a member of, then using tramp's sudo method raises an error similar to: byte-code: `/bin/sh -l -c 'echo 9905dea968fdd4a549d307a722e8109b \"$PATH\"'' returns with error On FreeBSD, /bin/sh does not accept the -l flag. bash, dash, and ksh do, but that's not part of the POSIX shell requirements (see http://pubs.opengroup.org/onlinepubs/009695399/utilities/sh.html), and historically the Bourne shell doesn't. This can be traced to tramp-get-remote-path, where it sends the command "%s -l %s 'echo %s \\\"$PATH\\\"'", where the first %s is the shell. I typically remove the -l flag in that function to make my Emacs work. Again, this only applies if tramp-own-remote-path is a member of tramp-remote-path; otherwise, that part of the code isn't invoked. It's not there by default, but it's very useful. In GNU Emacs 24.5.1 (i386-portbld-freebsd10.3, X toolkit, Xaw scroll bars) of 2016-06-01 on thor.piquan.org Configured using: `configure --localstatedir=/var --with-dbus --without-file-notification --with-gconf --with-gif --with-gnutls --with-gsettings --with-jpeg --with-m17n-flt --with-imagemagick --with-libotf --with-png --with-toolkit-scroll-bars --with-rsvg --with-tiff --with-x --with-xft --with-xim --with-xml2 --with-xpm --with-x-toolkit=athena --without-xaw3d --with-sound=oss --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/share/emacs/info/ --build=i386-portbld-freebsd10.3 'CFLAGS=-O2 -pipe -O2 -fno-strict-aliasing -pipe -march=athlon64 -isystem /usr/local/include -fstack-protector' 'CPPFLAGS=-isystem /usr/local/include' 'LDFLAGS= -ltinfo -L/usr/local/lib -Wl,-rpath=/usr/local/lib -fstack-protector'' Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Emacs-Lisp Minor modes in effect: diff-auto-refine-mode: t eldoc-mode: t minibuffer-electric-default-mode: t mail-abbrevs-mode: t iswitchb-mode: t desktop-save-mode: t savehist-mode: t which-function-mode: t auto-insert-mode: t show-paren-mode: t display-time-mode: t recentf-mode: t msb-mode: t shell-dirtrack-mode: t tooltip-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t buffer-read-only: t column-number-mode: t line-number-mode: t transient-mark-mode: t Recent messages: x is undefined i is undefined t is undefined s is undefined Quit Back to top level. Mark saved where search started Mark set Mark saved where search started [2 times] Abbrev mode enabled Load-path shadows: /usr/local/share/emacs/24.5/site-lisp/site-start hides /usr/local/share/emacs/site-lisp/site-start ~/src/elisp/dict hides /usr/local/share/emacs/site-lisp/dict /usr/local/share/emacs/24.5/site-lisp/flim/md4 hides /usr/local/share/emacs/24.5/lisp/md4 /usr/local/share/emacs/24.5/site-lisp/flim/hex-util hides /usr/local/share/emacs/24.5/lisp/hex-util /usr/local/share/emacs/24.5/site-lisp/flim/sasl hides /usr/local/share/emacs/24.5/lisp/net/sasl /usr/local/share/emacs/24.5/site-lisp/flim/sasl-ntlm hides /usr/local/share/emacs/24.5/lisp/net/sasl-ntlm /usr/local/share/emacs/24.5/site-lisp/flim/sasl-digest hides /usr/local/share/emacs/24.5/lisp/net/sasl-digest /usr/local/share/emacs/24.5/site-lisp/flim/sasl-cram hides /usr/local/share/emacs/24.5/lisp/net/sasl-cram /usr/local/share/emacs/24.5/site-lisp/flim/ntlm hides /usr/local/share/emacs/24.5/lisp/net/ntlm /usr/local/share/emacs/24.5/site-lisp/flim/hmac-md5 hides /usr/local/share/emacs/24.5/lisp/net/hmac-md5 /usr/local/share/emacs/24.5/site-lisp/flim/hmac-def hides /usr/local/share/emacs/24.5/lisp/net/hmac-def /usr/local/share/emacs/24.5/site-lisp/semi/smime hides /usr/local/share/emacs/24.5/lisp/gnus/smime /usr/local/share/emacs/24.5/site-lisp/semi/pgg hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg /usr/local/share/emacs/24.5/site-lisp/semi/pgg-pgp5 hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-pgp5 /usr/local/share/emacs/24.5/site-lisp/semi/pgg-pgp hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-pgp /usr/local/share/emacs/24.5/site-lisp/semi/pgg-parse hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-parse /usr/local/share/emacs/24.5/site-lisp/semi/pgg-gpg hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-gpg /usr/local/share/emacs/24.5/site-lisp/semi/pgg-def hides /usr/local/share/emacs/24.5/lisp/obsolete/pgg-def Features: (kmacro edebug grep compile ispell cl-indent pp shadow sort mail-extr warnings emacsbug message idna rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mail-utils debug eieio-opt speedbar sb-image ezimage dframe find-func help-mode misearch multi-isearch diff-mode easy-mmode vc-bzr vc-sccs vc-svn vc-cvs vc-rcs vc vc-dispatcher dired-aux dired-x dired add-log vc-git tramp-cmds xterm eldoc jka-compr minibuf-eldef mailabbrev iswitchb icomplete desktop frameset cus-start cus-load savehist vcursor disp-table derived which-func imenu slime-autoloads autoinsert cl-macs paren time server cl gv tramp-cache tramp-sh recentf tree-widget wid-edit msb tramp tramp-compat auth-source eieio byte-opt bytecomp byte-compile cl-extra cl-loaddefs cl-lib cconv eieio-core gnus-util mm-util mail-prsvr password-cache tramp-loaddefs trampver shell pcomplete comint ansi-color ring format-spec advice help-fns easymenu printing ps-print ps-def lpr midnight time-date tooltip electric uniquify ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list newcomment lisp-mode prog-mode register page menu-bar rfn-eshadow timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev minibuffer nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind dynamic-setting system-font-setting font-render-setting x-toolkit x multi-tty emacs) Memory information: ((conses 8 229927 39585) (symbols 24 29501 23) (miscs 20 699 1170) (strings 16 46836 4950) (string-bytes 1 1343106) (vectors 8 19069) (vector-slots 4 483571 17204) (floats 8 400 479) (intervals 28 12307 319) (buffers 512 30)) -- Joel Ray Holveck - joelh@piquan.org Fourth law of programming: Anything that can go wrong wi sendmail: segmentation violation - core dumped ------------=_1472372462-5882-1-- From debbugs-submit-bounces@debbugs.gnu.org Sat Dec 03 21:49:42 2016 Received: (at control) by debbugs.gnu.org; 4 Dec 2016 02:49:42 +0000 Received: from localhost ([127.0.0.1]:51761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDMs2-0004Js-AJ for submit@debbugs.gnu.org; Sat, 03 Dec 2016 21:49:42 -0500 Received: from eggs.gnu.org ([208.118.235.92]:56131) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cDMrz-0004JW-G1 for control@debbugs.gnu.org; Sat, 03 Dec 2016 21:49:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cDMrs-0001yx-95 for control@debbugs.gnu.org; Sat, 03 Dec 2016 21:49:34 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:53276) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cDMrs-0001yr-52 for control@debbugs.gnu.org; Sat, 03 Dec 2016 21:49:32 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1cDMrr-0005b2-Kh; Sat, 03 Dec 2016 21:49:31 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <22595.33851.293095.70553@gnu.org> Date: Sat, 3 Dec 2016 21:49:31 -0500 From: Glenn Morris To: control@debbugs.gnu.org Subject: Clean up predictable issues due to Emacs version number change X-Debbugs-No-Ack: yes X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -7.9 (-------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -7.9 (-------) # Ref: # http://lists.gnu.org/archive/html/emacs-devel/2016-11/msg00238.html # http://lists.gnu.org/archive/html/emacs-devel/2016-09/msg00692.html # http://lists.gnu.org/archive/html/emacs-devel/2016-01/msg01215.html # Some attempt has been made to check for things backported after the fact. # Erring on the side of a later version number seems preferable anyway. unarchive 10 fixed 10 26.1 notfixed 10 25.2 unarchive 96 fixed 96 26.1 notfixed 96 25.2 unarchive 1149 fixed 1149 26.1 notfixed 1149 25.2 unarchive 1150 fixed 1150 26.1 notfixed 1150 25.2 unarchive 2270 fixed 2270 26.1 notfixed 2270 25.2 unarchive 2405 fixed 2405 26.1 notfixed 2405 25.2 unarchive 2589 fixed 2589 26.1 notfixed 2589 25.2 unarchive 3137 fixed 3137 26.1 notfixed 3137 25.2 unarchive 3393 fixed 3393 26.1 notfixed 3393 25.2 unarchive 4589 fixed 4589 26.1 notfixed 4589 25.2 unarchive 4920 fixed 4920 26.1 notfixed 4920 25.2 unarchive 5001 fixed 5001 26.1 notfixed 5001 25.2 unarchive 5262 fixed 5262 26.1 notfixed 5262 25.2 unarchive 5305 fixed 5305 26.1 notfixed 5305 25.2 unarchive 5314 fixed 5314 26.1 notfixed 5314 25.2 unarchive 5479 fixed 5479 26.1 notfixed 5479 25.2 unarchive 5650 fixed 5650 26.1 notfixed 5650 25.2 unarchive 5661 fixed 5661 26.1 notfixed 5661 25.2 unarchive 5727 fixed 5727 26.1 notfixed 5727 25.2 unarchive 6817 fixed 6817 26.1 notfixed 6817 25.2 unarchive 7385 fixed 7385 26.1 notfixed 7385 25.2 unarchive 7522 fixed 7522 26.1 notfixed 7522 25.2 unarchive 7751 fixed 7751 26.1 notfixed 7751 25.2 unarchive 8634 fixed 8634 26.1 notfixed 8634 25.2 unarchive 8693 fixed 8693 26.1 notfixed 8693 25.2 unarchive 8925 fixed 8925 26.1 notfixed 8925 25.2 unarchive 9342 fixed 9342 26.1 notfixed 9342 25.2 unarchive 9730 fixed 9730 26.1 notfixed 9730 25.2 unarchive 10487 fixed 10487 26.1 notfixed 10487 25.2 unarchive 10540 fixed 10540 26.1 notfixed 10540 25.2 unarchive 10723 fixed 10723 26.1 notfixed 10723 25.2 unarchive 10794 fixed 10794 26.1 notfixed 10794 25.2 unarchive 10980 fixed 10980 26.1 notfixed 10980 25.2 unarchive 11357 fixed 11357 26.1 notfixed 11357 25.2 unarchive 11400 fixed 11400 26.1 notfixed 11400 25.2 unarchive 11788 fixed 11788 26.1 notfixed 11788 25.2 unarchive 12048 fixed 12048 26.1 notfixed 12048 25.2 unarchive 12377 fixed 12377 26.1 notfixed 12377 25.2 unarchive 12378 fixed 12378 26.1 notfixed 12378 25.2 unarchive 12636 fixed 12636 26.1 notfixed 12636 25.2 unarchive 12939 fixed 12939 26.1 notfixed 12939 25.2 unarchive 13269 fixed 13269 26.1 notfixed 13269 25.2 unarchive 13571 fixed 13571 26.1 notfixed 13571 25.2 unarchive 13745 fixed 13745 26.1 notfixed 13745 25.2 unarchive 13949 fixed 13949 26.1 notfixed 13949 25.2 unarchive 14256 fixed 14256 26.1 notfixed 14256 25.2 unarchive 14341 fixed 14341 26.1 notfixed 14341 25.2 unarchive 14484 fixed 14484 26.1 notfixed 14484 25.2 unarchive 14554 fixed 14554 26.1 notfixed 14554 25.2 unarchive 14577 fixed 14577 26.1 notfixed 14577 25.2 unarchive 14687 fixed 14687 26.1 notfixed 14687 25.2 unarchive 14844 fixed 14844 26.1 notfixed 14844 25.2 unarchive 14854 fixed 14854 26.1 notfixed 14854 25.2 unarchive 14915 fixed 14915 26.1 notfixed 14915 25.2 unarchive 14919 fixed 14919 26.1 notfixed 14919 25.2 unarchive 15021 fixed 15021 26.1 notfixed 15021 25.2 unarchive 15047 fixed 15047 26.1 notfixed 15047 25.2 unarchive 15171 fixed 15171 26.1 notfixed 15171 25.2 unarchive 15324 fixed 15324 26.1 notfixed 15324 25.2 unarchive 15445 fixed 15445 26.1 notfixed 15445 25.2 unarchive 15506 fixed 15506 26.1 notfixed 15506 25.2 unarchive 15909 fixed 15909 26.1 notfixed 15909 25.2 unarchive 16136 fixed 16136 26.1 notfixed 16136 25.2 unarchive 16200 fixed 16200 26.1 notfixed 16200 25.2 unarchive 16276 fixed 16276 26.1 notfixed 16276 25.2 unarchive 16294 fixed 16294 26.1 notfixed 16294 25.2 unarchive 16345 fixed 16345 26.1 notfixed 16345 25.2 unarchive 16390 fixed 16390 26.1 notfixed 16390 25.2 unarchive 16406 fixed 16406 26.1 notfixed 16406 25.2 unarchive 16483 fixed 16483 26.1 notfixed 16483 25.2 unarchive 16513 fixed 16513 26.1 notfixed 16513 25.2 unarchive 16579 fixed 16579 26.1 notfixed 16579 25.2 unarchive 16746 fixed 16746 26.1 notfixed 16746 25.2 unarchive 16891 fixed 16891 26.1 notfixed 16891 25.2 unarchive 16904 fixed 16904 26.1 notfixed 16904 25.2 unarchive 17039 fixed 17039 26.1 notfixed 17039 25.2 unarchive 17067 fixed 17067 26.1 notfixed 17067 25.2 unarchive 17119 fixed 17119 26.1 notfixed 17119 25.2 unarchive 17582 fixed 17582 26.1 notfixed 17582 25.2 unarchive 17707 fixed 17707 26.1 notfixed 17707 25.2 unarchive 17716 fixed 17716 26.1 notfixed 17716 25.2 unarchive 17738 fixed 17738 26.1 notfixed 17738 25.2 unarchive 17989 fixed 17989 26.1 notfixed 17989 25.2 unarchive 17999 fixed 17999 26.1 notfixed 17999 25.2 unarchive 18008 fixed 18008 26.1 notfixed 18008 25.2 unarchive 18024 fixed 18024 26.1 notfixed 18024 25.2 unarchive 18026 fixed 18026 26.1 notfixed 18026 25.2 unarchive 18028 fixed 18028 26.1 notfixed 18028 25.2 unarchive 18089 fixed 18089 26.1 notfixed 18089 25.2 unarchive 18092 fixed 18092 26.1 notfixed 18092 25.2 unarchive 18110 fixed 18110 26.1 notfixed 18110 25.2 unarchive 18202 fixed 18202 26.1 notfixed 18202 25.2 unarchive 18203 fixed 18203 26.1 notfixed 18203 25.2 unarchive 18204 fixed 18204 26.1 notfixed 18204 25.2 unarchive 18211 fixed 18211 26.1 notfixed 18211 25.2 unarchive 18279 fixed 18279 26.1 notfixed 18279 25.2 unarchive 18527 fixed 18527 26.1 notfixed 18527 25.2 unarchive 18587 fixed 18587 26.1 notfixed 18587 25.2 unarchive 18634 fixed 18634 26.1 notfixed 18634 25.2 unarchive 18635 fixed 18635 26.1 notfixed 18635 25.2 unarchive 18686 fixed 18686 26.1 notfixed 18686 25.2 unarchive 18692 fixed 18692 26.1 notfixed 18692 25.2 unarchive 18809 fixed 18809 26.1 notfixed 18809 25.2 unarchive 18810 fixed 18810 26.1 notfixed 18810 25.2 unarchive 18829 fixed 18829 26.1 notfixed 18829 25.2 unarchive 19114 fixed 19114 26.1 notfixed 19114 25.2 unarchive 19152 fixed 19152 26.1 notfixed 19152 25.2 unarchive 19209 fixed 19209 26.1 notfixed 19209 25.2 unarchive 19214 fixed 19214 26.1 notfixed 19214 25.2 unarchive 19215 fixed 19215 26.1 notfixed 19215 25.2 unarchive 19255 fixed 19255 26.1 notfixed 19255 25.2 unarchive 19368 fixed 19368 26.1 notfixed 19368 25.2 unarchive 19424 fixed 19424 26.1 notfixed 19424 25.2 unarchive 19497 fixed 19497 26.1 notfixed 19497 25.2 unarchive 19587 fixed 19587 26.1 notfixed 19587 25.2 unarchive 19638 fixed 19638 26.1 notfixed 19638 25.2 unarchive 19722 fixed 19722 26.1 notfixed 19722 25.2 unarchive 19754 fixed 19754 26.1 notfixed 19754 25.2 unarchive 19801 fixed 19801 26.1 notfixed 19801 25.2 unarchive 19851 fixed 19851 26.1 notfixed 19851 25.2 unarchive 20038 fixed 20038 26.1 notfixed 20038 25.2 unarchive 20158 fixed 20158 26.1 notfixed 20158 25.2 unarchive 20181 fixed 20181 26.1 notfixed 20181 25.2 unarchive 20304 fixed 20304 26.1 notfixed 20304 25.2 unarchive 20408 fixed 20408 26.1 notfixed 20408 25.2 unarchive 20460 fixed 20460 26.1 notfixed 20460 25.2 unarchive 20485 fixed 20485 26.1 notfixed 20485 25.2 unarchive 20520 fixed 20520 26.1 notfixed 20520 25.2 unarchive 20654 fixed 20654 26.1 notfixed 20654 25.2 unarchive 20702 fixed 20702 26.1 notfixed 20702 25.2 unarchive 20724 fixed 20724 26.1 notfixed 20724 25.2 unarchive 20878 fixed 20878 26.1 notfixed 20878 25.2 unarchive 21002 fixed 21002 26.1 notfixed 21002 25.2 unarchive 21014 fixed 21014 26.1 notfixed 21014 25.2 unarchive 21024 fixed 21024 26.1 notfixed 21024 25.2 unarchive 21155 fixed 21155 26.1 notfixed 21155 25.2 unarchive 21169 fixed 21169 26.1 notfixed 21169 25.2 unarchive 21171 fixed 21171 26.1 notfixed 21171 25.2 unarchive 21225 fixed 21225 26.1 notfixed 21225 25.2 unarchive 21231 fixed 21231 26.1 notfixed 21231 25.2 unarchive 21252 fixed 21252 26.1 notfixed 21252 25.2 unarchive 21269 fixed 21269 26.1 notfixed 21269 25.2 unarchive 21359 fixed 21359 26.1 notfixed 21359 25.2 unarchive 21427 fixed 21427 26.1 notfixed 21427 25.2 unarchive 21552 fixed 21552 26.1 notfixed 21552 25.2 unarchive 21576 fixed 21576 26.1 notfixed 21576 25.2 unarchive 21577 fixed 21577 26.1 notfixed 21577 25.2 unarchive 21601 fixed 21601 26.1 notfixed 21601 25.2 unarchive 21678 fixed 21678 26.1 notfixed 21678 25.2 unarchive 21679 fixed 21679 26.1 notfixed 21679 25.2 unarchive 21684 fixed 21684 26.1 notfixed 21684 25.2 unarchive 21706 fixed 21706 26.1 notfixed 21706 25.2 unarchive 21759 fixed 21759 26.1 notfixed 21759 25.2 unarchive 21851 fixed 21851 26.1 notfixed 21851 25.2 unarchive 21852 fixed 21852 26.1 notfixed 21852 25.2 unarchive 21853 fixed 21853 26.1 notfixed 21853 25.2 unarchive 21881 fixed 21881 26.1 notfixed 21881 25.2 unarchive 21936 fixed 21936 26.1 notfixed 21936 25.2 unarchive 21962 fixed 21962 26.1 notfixed 21962 25.2 unarchive 22117 fixed 22117 26.1 notfixed 22117 25.2 unarchive 22140 fixed 22140 26.1 notfixed 22140 25.2 unarchive 22170 fixed 22170 26.1 notfixed 22170 25.2 unarchive 22172 fixed 22172 26.1 notfixed 22172 25.2 unarchive 22227 fixed 22227 26.1 notfixed 22227 25.2 unarchive 22315 fixed 22315 26.1 notfixed 22315 25.2 unarchive 22325 fixed 22325 26.1 notfixed 22325 25.2 unarchive 22329 fixed 22329 26.1 notfixed 22329 25.2 unarchive 22348 fixed 22348 26.1 notfixed 22348 25.2 unarchive 22478 fixed 22478 26.1 notfixed 22478 25.2 unarchive 22530 fixed 22530 26.1 notfixed 22530 25.2 unarchive 22531 fixed 22531 26.1 notfixed 22531 25.2 unarchive 22576 fixed 22576 26.1 notfixed 22576 25.2 unarchive 22583 fixed 22583 26.1 notfixed 22583 25.2 unarchive 22586 fixed 22586 26.1 notfixed 22586 25.2 unarchive 22592 fixed 22592 26.1 notfixed 22592 25.2 unarchive 22594 fixed 22594 26.1 notfixed 22594 25.2 unarchive 22595 fixed 22595 26.1 notfixed 22595 25.2 unarchive 22596 fixed 22596 26.1 notfixed 22596 25.2 unarchive 22627 fixed 22627 26.1 notfixed 22627 25.2 unarchive 22632 fixed 22632 26.1 notfixed 22632 25.2 unarchive 22648 fixed 22648 26.1 notfixed 22648 25.2 unarchive 22664 fixed 22664 26.1 notfixed 22664 25.2 unarchive 22720 fixed 22720 26.1 notfixed 22720 25.2 unarchive 22724 fixed 22724 26.1 notfixed 22724 25.2 unarchive 22764 fixed 22764 26.1 notfixed 22764 25.2 unarchive 22799 fixed 22799 26.1 notfixed 22799 25.2 unarchive 22800 fixed 22800 26.1 notfixed 22800 25.2 unarchive 22814 fixed 22814 26.1 notfixed 22814 25.2 unarchive 22824 fixed 22824 26.1 notfixed 22824 25.2 unarchive 22827 fixed 22827 26.1 notfixed 22827 25.2 unarchive 22837 fixed 22837 26.1 notfixed 22837 25.2 unarchive 22841 fixed 22841 26.1 notfixed 22841 25.2 unarchive 22890 fixed 22890 26.1 notfixed 22890 25.2 unarchive 22928 fixed 22928 26.1 notfixed 22928 25.2 unarchive 22940 fixed 22940 26.1 notfixed 22940 25.2 unarchive 22964 fixed 22964 26.1 notfixed 22964 25.2 unarchive 22968 fixed 22968 26.1 notfixed 22968 25.2 unarchive 23020 fixed 23020 26.1 notfixed 23020 25.2 unarchive 23071 fixed 23071 26.1 notfixed 23071 25.2 unarchive 23116 fixed 23116 26.1 notfixed 23116 25.2 unarchive 23139 fixed 23139 26.1 notfixed 23139 25.2 unarchive 23159 fixed 23159 26.1 notfixed 23159 25.2 unarchive 23167 fixed 23167 26.1 notfixed 23167 25.2 unarchive 23262 fixed 23262 26.1 notfixed 23262 25.2 unarchive 23290 fixed 23290 26.1 notfixed 23290 25.2 unarchive 23374 fixed 23374 26.1 notfixed 23374 25.2 unarchive 23390 fixed 23390 26.1 notfixed 23390 25.2 unarchive 23401 fixed 23401 26.1 notfixed 23401 25.2 unarchive 23411 fixed 23411 26.1 notfixed 23411 25.2 unarchive 23459 fixed 23459 26.1 notfixed 23459 25.2 unarchive 23608 fixed 23608 26.1 notfixed 23608 25.2 unarchive 23703 fixed 23703 26.1 notfixed 23703 25.2 unarchive 23730 fixed 23730 26.1 notfixed 23730 25.2 unarchive 23829 fixed 23829 26.1 notfixed 23829 25.2 unarchive 23850 fixed 23850 26.1 notfixed 23850 25.2 unarchive 23863 fixed 23863 26.1 notfixed 23863 25.2 unarchive 23883 fixed 23883 26.1 notfixed 23883 25.2 unarchive 23914 fixed 23914 26.1 notfixed 23914 25.2 unarchive 23949 fixed 23949 26.1 notfixed 23949 25.2 unarchive 23998 fixed 23998 26.1 notfixed 23998 25.2 unarchive 24122 fixed 24122 26.1 notfixed 24122 25.2 unarchive 24133 fixed 24133 26.1 notfixed 24133 25.2 unarchive 24166 fixed 24166 26.1 notfixed 24166 25.2 unarchive 24257 fixed 24257 26.1 notfixed 24257 25.2 unarchive 24308 fixed 24308 26.1 notfixed 24308 25.2 unarchive 24432 fixed 24432 26.1 notfixed 24432 25.2