From debbugs-submit-bounces@debbugs.gnu.org Sun Aug 24 14:38:59 2014 Received: (at submit) by debbugs.gnu.org; 24 Aug 2014 18:38:59 +0000 Received: from localhost ([127.0.0.1]:51121 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XLcgp-0000oY-Ts for submit@debbugs.gnu.org; Sun, 24 Aug 2014 14:38:57 -0400 Received: from eggs.gnu.org ([208.118.235.92]:60202) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XLcgh-0000oA-RG for submit@debbugs.gnu.org; Sun, 24 Aug 2014 14:38:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XLcgX-0005ep-MF for submit@debbugs.gnu.org; Sun, 24 Aug 2014 14:38:42 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: * X-Spam-Status: No, score=1.1 required=5.0 tests=BAYES_50, FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:56588) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLcgX-0005ek-Iz for submit@debbugs.gnu.org; Sun, 24 Aug 2014 14:38:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33626) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLcgS-0000Zj-96 for bug-gnu-emacs@gnu.org; Sun, 24 Aug 2014 14:38:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XLcgN-0005dJ-DS for bug-gnu-emacs@gnu.org; Sun, 24 Aug 2014 14:38:32 -0400 Received: from mail-we0-x22f.google.com ([2a00:1450:400c:c03::22f]:50020) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLcgN-0005dD-1A for bug-gnu-emacs@gnu.org; Sun, 24 Aug 2014 14:38:27 -0400 Received: by mail-we0-f175.google.com with SMTP id t60so12507493wes.34 for ; Sun, 24 Aug 2014 11:38:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type; bh=XWDAKxpLV3XOL08+LUy7yr4D5f4F0x1ENOhtvKApeho=; b=bidxIekNX/mLhbRNDT7APhRE6tRxhbgnm+mQcp1JKmZzfFN9lsK74cW53EhrfwGYRs wmjJrHtGWBxZMeJ8qKUkvvQBj1cE9mJVfj77THbY9bBLJz0T6zZuhmjEb1p97m8dZTco 3Eph74soh5EP34Xd4jIy0tdd/hy3qJKbCMVGaNIdzMHOXuhwK1TAKvhZAdxLKQu3TaJa vWGAmbSMBspKMB55IxFpVJcwI7zYs1i4k/Z2qkAunYpThgaRDcQJLf8H8GccRi5eEfUN 4T2b6EuGsrjSJGchJbbitqr8bgwAOqyK+UYxQaJ8bSRl9W9NGemxVlMQYq3LivJrE+nu N4CA== X-Received: by 10.180.208.111 with SMTP id md15mr2199562wic.3.1408905505603; Sun, 24 Aug 2014 11:38:25 -0700 (PDT) Received: from Teacup (cpc20-flit3-2-0-cust95.9-1.cable.virginm.net. [81.111.147.96]) by mx.google.com with ESMTPSA id w14sm23047707wij.2.2014.08.24.11.38.23 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 24 Aug 2014 11:38:24 -0700 (PDT) From: Joe Corneli To: bug-gnu-emacs@gnu.org Subject: 24.4.50; allow-no-window for async-shell-command in temp buffer Date: Sun, 24 Aug 2014 19:34:21 +0100 Message-ID: <8738cl20nz.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -3.8 (---) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -3.8 (---) The docs for `async-shell-command' say: (async-shell-command COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER) [...] To run COMMAND without displaying the output in a window you can configure `display-buffer-alist' to use the action `display-buffer-no-window' for the buffer `*Async Shell Command*'. Referring to further docs and a recent discussion on this list, https://lists.gnu.org/archive/html/bug-gnu-emacs/2014-07/msg00935.html I see that that boils down to a setting like this: (setq display-buffer-alist '(("\\*Async Shell Command\\*" . (display-buffer-no-window . ((allow-no-window . t)))))) So, I've made that setting, expecting that it means that the Async Shell Command buffer will not appear. But then, defining the following function and running the snippet that follows gives me an error: (defun sudo-shell-command (command) (interactive "MShell command (root): ") (with-temp-buffer (cd "/sudo::/") (async-shell-command command))) (sudo-shell-command "touch /dev/null") byte-code: Wrong type argument: window-live-p, nil ...Is that really to be expected? As a work-around: if I return to the default setting for `display-buffer-alist' and define my function this way, there is no error and, as desired, the buffer doesn't display: (setq display-buffer-alist nil) (defun sudo-shell-command (command) (interactive "MShell command (root): ") (save-window-excursion (with-temp-buffer (cd "/sudo::/") (async-shell-command command)))) (sudo-shell-command "touch /dev/null") I get the message: nil: finished. I might have expect to see: touch /dev/null: finished. but at least there's no error! In GNU Emacs 24.4.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.10.8) of 2014-08-09 on Teacup Repository revision: 117674 rrt@sc3d.org-20140809165943-i667kjxzdst2ey4c Windowing system distributor `The X.Org Foundation', version 11.0.11501000 System Description: Ubuntu 14.04.1 LTS Configured features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GSETTINGS NOTIFY GNUTLS LIBXML2 FREETYPE XFT ZLIB Important settings: value of $LC_MONETARY: en_GB.UTF-8 value of $LC_NUMERIC: en_GB.UTF-8 value of $LC_TIME: en_GB.UTF-8 value of $LANG: en_GB.UTF-8 value of $XMODIFIERS: @im=none locale-coding-system: utf-8-unix Major mode: Emacs-Lisp Minor modes in effect: shell-dirtrack-mode: t show-paren-mode: t tooltip-mode: t electric-indent-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 column-number-mode: t line-number-mode: t Recent input: C-x b * e w g C-z M-> c d SPC . . w h i c h c d SPC s r c e m a c s SPC - - v e r s i o n C-a . / C-e M-x a b o u t C-x C-b C-x o C-x o C-n C-n C-n C-x b * e g C-x b M-< ; ; ; C-e SPC C-y C-x 1 C-n C-n C-SPC M-> M-w M-x r e p o r Recent messages: nil: finished. https://lists.gnu.org/archive/html/bug-gnu-emacs/2014-07/msg00935.html Mark set ~/emacs ~/emacs/src You can run the command `about-emacs' with C-h C-a o is undefined https://lists.gnu.org/archive/html/bug-gnu-emacs/2014-07/msg00935.html Mark set [3 times] Making completion list... [2 times] Load-path shadows: ~/org-mode/lisp/org-crypt hides /usr/local/share/emacs/24.4.50/lisp/org/org-crypt ~/org-mode/lisp/org-mouse hides /usr/local/share/emacs/24.4.50/lisp/org/org-mouse ~/org-mode/lisp/ob-R hides /usr/local/share/emacs/24.4.50/lisp/org/ob-R ~/org-mode/lisp/org-indent hides /usr/local/share/emacs/24.4.50/lisp/org/org-indent ~/org-mode/lisp/ob-lilypond hides /usr/local/share/emacs/24.4.50/lisp/org/ob-lilypond ~/org-mode/lisp/org-mobile hides /usr/local/share/emacs/24.4.50/lisp/org/org-mobile ~/org-mode/lisp/ob-scheme hides /usr/local/share/emacs/24.4.50/lisp/org/ob-scheme ~/org-mode/lisp/ob-comint hides /usr/local/share/emacs/24.4.50/lisp/org/ob-comint ~/org-mode/lisp/org-eshell hides /usr/local/share/emacs/24.4.50/lisp/org/org-eshell ~/org-mode/lisp/ob-asymptote hides /usr/local/share/emacs/24.4.50/lisp/org/ob-asymptote ~/org-mode/lisp/ob-makefile hides /usr/local/share/emacs/24.4.50/lisp/org/ob-makefile ~/org-mode/lisp/org-w3m hides /usr/local/share/emacs/24.4.50/lisp/org/org-w3m ~/org-mode/lisp/org-colview hides /usr/local/share/emacs/24.4.50/lisp/org/org-colview ~/org-mode/lisp/org-install hides /usr/local/share/emacs/24.4.50/lisp/org/org-install ~/org-mode/lisp/org-bibtex hides /usr/local/share/emacs/24.4.50/lisp/org/org-bibtex ~/org-mode/lisp/ob-sqlite hides /usr/local/share/emacs/24.4.50/lisp/org/ob-sqlite ~/org-mode/lisp/org-element hides /usr/local/share/emacs/24.4.50/lisp/org/org-element ~/org-mode/lisp/org-timer hides /usr/local/share/emacs/24.4.50/lisp/org/org-timer ~/org-mode/lisp/ob-C hides /usr/local/share/emacs/24.4.50/lisp/org/ob-C ~/org-mode/lisp/ob-haskell hides /usr/local/share/emacs/24.4.50/lisp/org/ob-haskell ~/org-mode/lisp/ob-sql hides /usr/local/share/emacs/24.4.50/lisp/org/ob-sql ~/org-mode/lisp/ob-picolisp hides /usr/local/share/emacs/24.4.50/lisp/org/ob-picolisp ~/org-mode/lisp/ob-java hides /usr/local/share/emacs/24.4.50/lisp/org/ob-java ~/org-mode/lisp/org-footnote hides /usr/local/share/emacs/24.4.50/lisp/org/org-footnote ~/org-mode/lisp/ox-html hides /usr/local/share/emacs/24.4.50/lisp/org/ox-html ~/org-mode/lisp/ob-latex hides /usr/local/share/emacs/24.4.50/lisp/org/ob-latex ~/org-mode/lisp/ob-screen hides /usr/local/share/emacs/24.4.50/lisp/org/ob-screen ~/org-mode/lisp/ob-css hides /usr/local/share/emacs/24.4.50/lisp/org/ob-css ~/org-mode/lisp/org-attach hides /usr/local/share/emacs/24.4.50/lisp/org/org-attach ~/org-mode/lisp/ob-ditaa hides /usr/local/share/emacs/24.4.50/lisp/org/ob-ditaa ~/org-mode/lisp/ob-shen hides /usr/local/share/emacs/24.4.50/lisp/org/ob-shen ~/org-mode/lisp/org-feed hides /usr/local/share/emacs/24.4.50/lisp/org/org-feed ~/org-mode/lisp/ob-keys hides /usr/local/share/emacs/24.4.50/lisp/org/ob-keys ~/org-mode/lisp/ob-exp hides /usr/local/share/emacs/24.4.50/lisp/org/ob-exp ~/org-mode/lisp/org-datetree hides /usr/local/share/emacs/24.4.50/lisp/org/org-datetree ~/org-mode/lisp/org-macs hides /usr/local/share/emacs/24.4.50/lisp/org/org-macs ~/org-mode/lisp/ob-ruby hides /usr/local/share/emacs/24.4.50/lisp/org/ob-ruby ~/org-mode/lisp/ob-mscgen hides /usr/local/share/emacs/24.4.50/lisp/org/ob-mscgen ~/org-mode/lisp/ob-fortran hides /usr/local/share/emacs/24.4.50/lisp/org/ob-fortran ~/org-mode/lisp/org-irc hides /usr/local/share/emacs/24.4.50/lisp/org/org-irc ~/org-mode/lisp/org-version hides /usr/local/share/emacs/24.4.50/lisp/org/org-version ~/org-mode/lisp/ox-beamer hides /usr/local/share/emacs/24.4.50/lisp/org/ox-beamer ~/org-mode/lisp/ob-ref hides /usr/local/share/emacs/24.4.50/lisp/org/ob-ref ~/org-mode/lisp/org-rmail hides /usr/local/share/emacs/24.4.50/lisp/org/org-rmail ~/org-mode/lisp/ox hides /usr/local/share/emacs/24.4.50/lisp/org/ox ~/org-mode/lisp/ob-perl hides /usr/local/share/emacs/24.4.50/lisp/org/ob-perl ~/org-mode/lisp/org-agenda hides /usr/local/share/emacs/24.4.50/lisp/org/org-agenda ~/org-mode/lisp/org-habit hides /usr/local/share/emacs/24.4.50/lisp/org/org-habit ~/org-mode/lisp/org-compat hides /usr/local/share/emacs/24.4.50/lisp/org/org-compat ~/org-mode/lisp/ox-md hides /usr/local/share/emacs/24.4.50/lisp/org/ox-md ~/org-mode/lisp/org-plot hides /usr/local/share/emacs/24.4.50/lisp/org/org-plot ~/org-mode/lisp/ob-clojure hides /usr/local/share/emacs/24.4.50/lisp/org/ob-clojure ~/org-mode/lisp/ob-matlab hides /usr/local/share/emacs/24.4.50/lisp/org/ob-matlab ~/org-mode/lisp/ob-core hides /usr/local/share/emacs/24.4.50/lisp/org/ob-core ~/org-mode/lisp/ob-tangle hides /usr/local/share/emacs/24.4.50/lisp/org/ob-tangle ~/org-mode/lisp/org-loaddefs hides /usr/local/share/emacs/24.4.50/lisp/org/org-loaddefs ~/org-mode/lisp/org-ctags hides /usr/local/share/emacs/24.4.50/lisp/org/org-ctags ~/org-mode/lisp/org-docview hides /usr/local/share/emacs/24.4.50/lisp/org/org-docview ~/org-mode/lisp/ob-ledger hides /usr/local/share/emacs/24.4.50/lisp/org/ob-ledger ~/org-mode/lisp/org hides /usr/local/share/emacs/24.4.50/lisp/org/org ~/org-mode/lisp/org-protocol hides /usr/local/share/emacs/24.4.50/lisp/org/org-protocol ~/org-mode/lisp/ox-latex hides /usr/local/share/emacs/24.4.50/lisp/org/ox-latex ~/org-mode/lisp/ob-gnuplot hides /usr/local/share/emacs/24.4.50/lisp/org/ob-gnuplot ~/org-mode/lisp/ob-sass hides /usr/local/share/emacs/24.4.50/lisp/org/ob-sass ~/org-mode/lisp/org-pcomplete hides /usr/local/share/emacs/24.4.50/lisp/org/org-pcomplete ~/org-mode/lisp/ob hides /usr/local/share/emacs/24.4.50/lisp/org/ob ~/org-mode/lisp/ox-odt hides /usr/local/share/emacs/24.4.50/lisp/org/ox-odt ~/org-mode/lisp/ob-lob hides /usr/local/share/emacs/24.4.50/lisp/org/ob-lob ~/org-mode/lisp/ob-table hides /usr/local/share/emacs/24.4.50/lisp/org/ob-table ~/org-mode/lisp/org-mhe hides /usr/local/share/emacs/24.4.50/lisp/org/org-mhe ~/org-mode/lisp/ob-dot hides /usr/local/share/emacs/24.4.50/lisp/org/ob-dot ~/org-mode/lisp/ob-octave hides /usr/local/share/emacs/24.4.50/lisp/org/ob-octave ~/org-mode/lisp/ob-calc hides /usr/local/share/emacs/24.4.50/lisp/org/ob-calc ~/org-mode/lisp/ob-scala hides /usr/local/share/emacs/24.4.50/lisp/org/ob-scala ~/org-mode/lisp/ox-texinfo hides /usr/local/share/emacs/24.4.50/lisp/org/ox-texinfo ~/org-mode/lisp/org-macro hides /usr/local/share/emacs/24.4.50/lisp/org/org-macro ~/org-mode/lisp/ox-ascii hides /usr/local/share/emacs/24.4.50/lisp/org/ox-ascii ~/org-mode/lisp/ob-org hides /usr/local/share/emacs/24.4.50/lisp/org/ob-org ~/org-mode/lisp/ob-plantuml hides /usr/local/share/emacs/24.4.50/lisp/org/ob-plantuml ~/org-mode/lisp/org-gnus hides /usr/local/share/emacs/24.4.50/lisp/org/org-gnus ~/org-mode/lisp/ox-man hides /usr/local/share/emacs/24.4.50/lisp/org/ox-man ~/org-mode/lisp/ob-emacs-lisp hides /usr/local/share/emacs/24.4.50/lisp/org/ob-emacs-lisp ~/org-mode/lisp/ob-ocaml hides /usr/local/share/emacs/24.4.50/lisp/org/ob-ocaml ~/org-mode/lisp/org-faces hides /usr/local/share/emacs/24.4.50/lisp/org/org-faces ~/org-mode/lisp/org-clock hides /usr/local/share/emacs/24.4.50/lisp/org/org-clock ~/org-mode/lisp/org-src hides /usr/local/share/emacs/24.4.50/lisp/org/org-src ~/org-mode/lisp/ob-lisp hides /usr/local/share/emacs/24.4.50/lisp/org/ob-lisp ~/org-mode/lisp/org-list hides /usr/local/share/emacs/24.4.50/lisp/org/org-list ~/org-mode/lisp/ob-js hides /usr/local/share/emacs/24.4.50/lisp/org/ob-js ~/org-mode/lisp/ob-maxima hides /usr/local/share/emacs/24.4.50/lisp/org/ob-maxima ~/org-mode/lisp/ox-publish hides /usr/local/share/emacs/24.4.50/lisp/org/ox-publish ~/org-mode/lisp/org-archive hides /usr/local/share/emacs/24.4.50/lisp/org/org-archive ~/org-mode/lisp/ob-awk hides /usr/local/share/emacs/24.4.50/lisp/org/ob-awk ~/org-mode/lisp/ob-io hides /usr/local/share/emacs/24.4.50/lisp/org/ob-io ~/org-mode/lisp/ob-python hides /usr/local/share/emacs/24.4.50/lisp/org/ob-python ~/org-mode/lisp/ox-icalendar hides /usr/local/share/emacs/24.4.50/lisp/org/ox-icalendar ~/org-mode/lisp/org-bbdb hides /usr/local/share/emacs/24.4.50/lisp/org/org-bbdb ~/org-mode/lisp/org-id hides /usr/local/share/emacs/24.4.50/lisp/org/org-id ~/org-mode/lisp/org-capture hides /usr/local/share/emacs/24.4.50/lisp/org/org-capture ~/org-mode/lisp/org-entities hides /usr/local/share/emacs/24.4.50/lisp/org/org-entities ~/org-mode/lisp/ox-org hides /usr/local/share/emacs/24.4.50/lisp/org/ox-org ~/org-mode/lisp/org-inlinetask hides /usr/local/share/emacs/24.4.50/lisp/org/org-inlinetask ~/org-mode/lisp/org-info hides /usr/local/share/emacs/24.4.50/lisp/org/org-info ~/org-mode/lisp/ob-eval hides /usr/local/share/emacs/24.4.50/lisp/org/ob-eval ~/org-mode/lisp/org-table hides /usr/local/share/emacs/24.4.50/lisp/org/org-table ~/postdoc.git/elisp/lisp-mode hides /usr/local/share/emacs/24.4.50/lisp/emacs-lisp/lisp-mode Features: (shadow sort mail-extr emacsbug info vc-bzr pcmpl-unix dabbrev cus-edit pp edebug cus-start cus-load debug eieio-opt help-mode rect tabify imenu man url-queue shr-color color timezone gnutls network-stream starttls url-http url-gw url-cache url-auth sh-script smie executable mule-util face-remap conf-mode tramp-cmds tramp-sh tramp-cache tramp tramp-compat tramp-loaddefs trampver misearch multi-isearch shell joes-dired-config ls-lisp joes-buffer-menu-config joes-eww eww mm-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util url-parse url-vars mailcap joes-org-mode ox-s5 org-agenda ox-latex ox-icalendar ox-html ox-ascii ox-publish ox org-rmail org-mhe org-irc org-info org-gnus org-docview org-bibtex bibtex org-bbdb org-w3m gnus-sum gnus-group gnus-undo gnus-start gnus-cloud nnimap nnmail mail-source tls utf7 netrc nnoo parse-time gnus-spec gnus-int gnus-range gnus-win gnus gnus-ems nnheader wid-edit org-element avl-tree org-install joes-mu4e-config org-mu4e org org-macro org-footnote org-pcomplete pcomplete org-list org-faces org-entities noutline outline easy-mmode org-version ob-emacs-lisp ob ob-tangle org-src ob-ref ob-lob ob-table ob-keys ob-exp ob-comint ob-core ob-eval org-compat org-macs org-loaddefs find-func cal-menu calendar cal-loaddefs shr smtpmail-multi mu4e mu4e-speedbar speedbar sb-image ezimage dframe mu4e-main mu4e-view epa derived epg epg-config browse-url comint ansi-color ring mu4e-headers mu4e-compose mu4e-draft mu4e-actions ido rfc2368 smtpmail auth-source eieio byte-opt bytecomp byte-compile cconv eieio-core gnus-util password-cache sendmail mu4e-mark mu4e-message html2text mu4e-proc mu4e-utils doc-view jka-compr image-mode mu4e-lists mu4e-about mu4e-vars message cl-macs dired format-spec rfc822 mml easymenu mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mailabbrev mail-utils gmm-utils mailheader hl-line cl gv mu4e-meta generic generic-x advice help-fns edmacro kmacro cl-loaddefs cl-lib paren 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 gfilenotify dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty emacs) Memory information: ((conses 16 479492 120066) (symbols 48 41860 0) (miscs 40 1031 1465) (strings 32 100290 33196) (string-bytes 1 3166797) (vectors 16 32860) (vector-slots 8 664954 30872) (floats 8 532 920) (intervals 56 10643 1693) (buffers 976 44) (heap 1024 71763 68922)) From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 25 11:03:37 2014 Received: (at 18326) by debbugs.gnu.org; 25 Aug 2014 15:03:37 +0000 Received: from localhost ([127.0.0.1]:51832 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XLvnw-00082y-Kp for submit@debbugs.gnu.org; Mon, 25 Aug 2014 11:03:37 -0400 Received: from chene.dit.umontreal.ca ([132.204.246.20]:54535) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XLvnq-00082k-Gg for 18326@debbugs.gnu.org; Mon, 25 Aug 2014 11:03:31 -0400 Received: from fmsmemgm.homelinux.net (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id s7PF3P3A024687; Mon, 25 Aug 2014 11:03:25 -0400 Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 96496AE093; Mon, 25 Aug 2014 11:03:24 -0400 (EDT) From: Stefan Monnier To: Joe Corneli Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer Message-ID: References: <8738cl20nz.fsf@gmail.com> Date: Mon, 25 Aug 2014 11:03:24 -0400 In-Reply-To: <8738cl20nz.fsf@gmail.com> (Joe Corneli's message of "Sun, 24 Aug 2014 19:34:21 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-NAI-Spam-Flag: NO X-NAI-Spam-Level: X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0.2 X-NAI-Spam-Rules: 2 Rules triggered GEN_SPAM_FEATRE=0.2, RV5044=0 X-NAI-Spam-Version: 2.3.0.9378 : core <5044> : inlines <1204> : streams <1273417> : uri <1806573> X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: 18326 Cc: 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -1.3 (-) > (setq display-buffer-alist > '(("\\*Async Shell Command\\*" . (display-buffer-no-window > . ((allow-no-window . t)))))) The allow-no-window option should be passed by the *caller*. You shouldn't need it and don't want it here. Stefan From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 26 18:59:38 2014 Received: (at 18326) by debbugs.gnu.org; 26 Aug 2014 22:59:38 +0000 Received: from localhost ([127.0.0.1]:52810 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMPiD-0004dI-HG for submit@debbugs.gnu.org; Tue, 26 Aug 2014 18:59:38 -0400 Received: from mail-oi0-f48.google.com ([209.85.218.48]:59317) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMPiB-0004d3-2X for 18326@debbugs.gnu.org; Tue, 26 Aug 2014 18:59:35 -0400 Received: by mail-oi0-f48.google.com with SMTP id v63so2249837oia.7 for <18326@debbugs.gnu.org>; Tue, 26 Aug 2014 15:59:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=//2j2pnItVP/UxeXdM8Hhuti+GvXibQPrxnCPB9O+8M=; b=RxWLpQ7vsT+0IwP00+XQ1fFo1oB3Z73nqrnv4P1DOBLJ0n05ncVKKvusVkQsm1H1Bc lv1vy6MY/3uOJYDs1fmfo9uzsq38TcP/bxhNKl7gJhRUJNvuyImqn2nVnNLzSpvDAB/v PT7rT0eqSNV/iuba50zBTG6nmdBgdxMylAC7vlWb70Rpwk/T4EeVC/+T85DSmsxS0IZS vbkrjnywR9FfVdofZWKGRk3hj592YqhFKQ+1ZkFL1mLVTz9dHV2RUnsqBuJH6tlijlxH Osmm+R4iBMlGjmlRw33pmAxoC9zZ47PktuMHYenqyl77y/IFxXrfPJpUFme/GEnTak7A gMDw== MIME-Version: 1.0 X-Received: by 10.60.156.198 with SMTP id wg6mr12150965oeb.69.1409093969196; Tue, 26 Aug 2014 15:59:29 -0700 (PDT) Received: by 10.182.4.146 with HTTP; Tue, 26 Aug 2014 15:59:29 -0700 (PDT) In-Reply-To: References: <8738cl20nz.fsf@gmail.com> Date: Tue, 26 Aug 2014 23:59:29 +0100 Message-ID: Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer From: Joe Corneli To: Stefan Monnier Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -0.4 (/) X-Debbugs-Envelope-To: 18326 Cc: 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.4 (/) Hi Stefan: I tried this: (setq display-buffer-alist '(("\\*Async Shell Command\\*" . (display-buffer-no-window . nil)))) (defun sudo-shell-command (command) (interactive "MShell command (root): ") (with-temp-buffer (cd "/sudo::/") (async-shell-command command))) (sudo-shell-command "touch /dev/null") The buffer still pops up. The docs say: (async-shell-command COMMAND &optional OUTPUT-BUFFER ERROR-BUFFER) [...] To run COMMAND without displaying the output in a window you can configure `display-buffer-alist' to use the action `display-buffer-no-window' for the buffer `*Async Shell Command*'. OK, would be be able to tell me how I do that? It seems that I've now tried two seemingly sensible ways to do this configuration, and the docs led me to the previous configuration, and not clearly to anything else. display-buffer-alist is a variable defined in `window.el'. [...] This is a list of elements (CONDITION . ACTION), where: CONDITION is either a regexp matching buffer names, or a function that takes two arguments - a buffer name and the ACTION argument of `display-buffer' - and returns a boolean. ACTION is a cons cell (FUNCTION . ALIST), where FUNCTION is a function or a list of functions. Each such function should accept two arguments: a buffer to display and an alist of the same form as ALIST. See `display-buffer' for details. (display-buffer-no-window BUFFER ALIST) [...] Display BUFFER in no window. If ALIST has a non-nil `allow-no-window' entry, then don't display a window at all. From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 26 19:31:24 2014 Received: (at 18326) by debbugs.gnu.org; 26 Aug 2014 23:31:24 +0000 Received: from localhost ([127.0.0.1]:53002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMQCu-0005Xj-Bt for submit@debbugs.gnu.org; Tue, 26 Aug 2014 19:31:24 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:40869 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMQCo-0005XU-HN for 18326@debbugs.gnu.org; Tue, 26 Aug 2014 19:31:18 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XMQCn-0000Li-V4; Tue, 26 Aug 2014 19:31:14 -0400 From: Glenn Morris To: Joe Corneli Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer References: <8738cl20nz.fsf@gmail.com> X-Spook: Reno Waco, Texas SDI nuclear John Kerry Al Jazeera David X-Ran: +_zJ;/"39MaE@rSXfO.o6*\ZJ&kAZT&kEM5z=bAnEx@?M*"?2x*qxAq'&J9A^:@'Ewsu@( X-Hue: white X-Debbugs-No-Ack: yes X-Attribution: GM Date: Tue, 26 Aug 2014 19:31:13 -0400 In-Reply-To: (Joe Corneli's message of "Tue, 26 Aug 2014 23:59:29 +0100") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 18326 Cc: Stefan Monnier , 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) The example from http://debbugs.gnu.org/13594#185 works for me. (add-to-list 'display-buffer-alist '("\\*Async Shell Command\\*" display-buffer-no-window (nil))) From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 02:50:08 2014 Received: (at 18326) by debbugs.gnu.org; 28 Aug 2014 06:50:08 +0000 Received: from localhost ([127.0.0.1]:53998 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMtX4-00034P-IN for submit@debbugs.gnu.org; Thu, 28 Aug 2014 02:50:07 -0400 Received: from mail-wi0-f182.google.com ([209.85.212.182]:47085) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XMtWx-00033Y-5u for 18326@debbugs.gnu.org; Thu, 28 Aug 2014 02:50:00 -0400 Received: by mail-wi0-f182.google.com with SMTP id z2so309701wiv.3 for <18326@debbugs.gnu.org>; Wed, 27 Aug 2014 23:49:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:from:to:cc:subject:date:in-reply-to:message-id :mime-version:content-type; bh=dJtw24S+MTTRSx8q2dyKISt71HCZyLPbLXYxcDVNIfM=; b=cJfH8x1SjuufQGNW3rsiYzCJA6b0U6LWc4kcZaSWWRQDWPJnL6qC1cN0UHBMf67No6 kRoVZT0o5X8pRI9XbnzQ+x9aadnBsY53PtwuNJWhPECOIzBU9Wwl5r2LC9sDV18jLZUG cc5kv6jzs8kTtun/mTDosMXNzIo1EFdKSVJy7kf+8sBZe11rUg49g4akgSKvEUUl8MX8 3Y3/GyFwvcMaCRKAcU+Yk3k9lNTL4fsP/GlFdaK3YYeWPJ09XLVqzX+LcAFdPzsd8WIo jx3m01dCV4MTJli+EtgYXUlLWzFgesY9wn+SpuIn73d0Q42YAAiuYUWg9HD7D0oRJngt u27A== X-Received: by 10.194.78.170 with SMTP id c10mr2662354wjx.22.1409208593210; Wed, 27 Aug 2014 23:49:53 -0700 (PDT) Received: from Teacup (cpc20-flit3-2-0-cust95.9-1.cable.virginm.net. [81.111.147.96]) by mx.google.com with ESMTPSA id hi4sm7271302wjb.46.2014.08.27.23.49.51 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 27 Aug 2014 23:49:51 -0700 (PDT) References: <8738cl20nz.fsf@gmail.com> From: Joe Corneli To: Glenn Morris Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer Date: Thu, 28 Aug 2014 07:42:38 +0100 In-reply-to: Message-ID: <87vbpdglbm.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.4 (/) X-Debbugs-Envelope-To: 18326 Cc: Stefan Monnier , 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.4 (/) Glenn Morris writes: > The example from http://debbugs.gnu.org/13594#185 works for me. > > (add-to-list 'display-buffer-alist '("\\*Async Shell Command\\*" > display-buffer-no-window (nil))) Using that snippet, I'm still seeing a window pop up containing the contents of /etc/shadow when I run: emacs -Q -l start-up.el M-x sudo-test RET RET where start-up.el contains the following code: (add-to-list 'display-buffer-alist '("\\*Async Shell Command\\*" display-buffer-no-window (nil))) (defun sudo-shell-command (command) (interactive "MShell command (root): ") (with-temp-buffer (cd "/sudo::/") (async-shell-command command))) (defun sudo-test () (interactive) (sudo-shell-command "cat /etc/shadow")) From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 11:45:10 2014 Received: (at 18326) by debbugs.gnu.org; 28 Aug 2014 15:45:10 +0000 Received: from localhost ([127.0.0.1]:54554 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN1ss-00019P-7i for submit@debbugs.gnu.org; Thu, 28 Aug 2014 11:45:10 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:51531 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN1sp-00019G-BW for 18326@debbugs.gnu.org; Thu, 28 Aug 2014 11:45:08 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XN1sn-0002oL-QZ; Thu, 28 Aug 2014 11:45:05 -0400 From: Glenn Morris To: Joe Corneli Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer References: <8738cl20nz.fsf@gmail.com> <87vbpdglbm.fsf@gmail.com> X-Spook: SP4 DES HAMASMOIS Kh-11 offensive information warfare X-Ran: u.qZ#"\z;^?5lVq@q{QzdsFDkr;(5&5mrkBxdI\koTh3:$]V]u*(\w?bE:s+e\"tU_ZM9R X-Hue: black X-Debbugs-No-Ack: yes X-Attribution: GM Date: Thu, 28 Aug 2014 11:45:05 -0400 In-Reply-To: <87vbpdglbm.fsf@gmail.com> (Joe Corneli's message of "Thu, 28 Aug 2014 07:42:38 +0100") Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 18326 Cc: Stefan Monnier , 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) Works for me without sudo (eg cd /tmp instead). Maybe it's a sudo/tramp thing. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 15:33:18 2014 Received: (at 18326) by debbugs.gnu.org; 28 Aug 2014 19:33:18 +0000 Received: from localhost ([127.0.0.1]:52768 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN5Rd-0005Xm-Lm for submit@debbugs.gnu.org; Thu, 28 Aug 2014 15:33:17 -0400 Received: from mout.gmx.net ([212.227.17.21]:51987) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN5Rb-0005XZ-D3 for 18326@debbugs.gnu.org; Thu, 28 Aug 2014 15:33:16 -0400 Received: from detlef.gmx.de ([87.146.59.2]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0LejNC-1WWlRd2R1a-00qT97; Thu, 28 Aug 2014 21:33:07 +0200 From: Michael Albinus To: Glenn Morris Subject: Re: bug#18326: 24.4.50; allow-no-window for async-shell-command in temp buffer References: <8738cl20nz.fsf@gmail.com> <87vbpdglbm.fsf@gmail.com> Date: Thu, 28 Aug 2014 21:33:03 +0200 In-Reply-To: (Glenn Morris's message of "Thu, 28 Aug 2014 11:45:05 -0400") Message-ID: <87k35ss93k.fsf@gmx.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K0:EpSeycMNNMypaxtH4UlNMQ/gfCLSEMNxy4xgdfcpqXMT6PfBl6f RgxK4OS8iqG9ZsLTBrnSmNzuRmiGXwIfRPwirThRoZZABanYBq4DCD57s8v++FeHpvzQ+ZV vMBwtYaXEFJbWTPXzJFdHlzutbWUWH8gD/8SnazMPxSZ65pL/SqSjxpOC7TkmIFtMVu6XMQ DaqUTl4ieM1qPtKxMrwEQ== X-UI-Out-Filterresults: notjunk:1; X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 18326 Cc: Joe Corneli , 18326@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.0 (/) Glenn Morris writes: > Works for me without sudo (eg cd /tmp instead). Maybe it's a sudo/tramp thing. `tramp-handle-shell-command' didn't use `display-buffer'. I've changed that in the trunk. Best regards, Michael. From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 28 15:35:21 2014 Received: (at control) by debbugs.gnu.org; 28 Aug 2014 19:35:21 +0000 Received: from localhost ([127.0.0.1]:52776 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN5TX-0005bJ-QO for submit@debbugs.gnu.org; Thu, 28 Aug 2014 15:35:20 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:55751 ident=Debian-exim) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XN5TV-0005bB-J0 for control@debbugs.gnu.org; Thu, 28 Aug 2014 15:35:14 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XN5TV-0006jV-A0 for control@debbugs.gnu.org; Thu, 28 Aug 2014 15:35:13 -0400 Date: Thu, 28 Aug 2014 15:35:13 -0400 Message-Id: Subject: control message for bug 18326 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) close 18326 24.5 From unknown Fri Jun 20 07:18:07 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 26 Sep 2014 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 04 12:35:32 2014 Received: (at control) by debbugs.gnu.org; 4 Oct 2014 16:35:32 +0000 Received: from localhost ([127.0.0.1]:33183 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIt-0002m9-8U for submit@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:31 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:60039) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XaSIr-0002lz-Gi for control@debbugs.gnu.org; Sat, 04 Oct 2014 12:35:29 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1XaSIq-0005r2-MO; Sat, 04 Oct 2014 12:35:28 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <21552.8656.554316.921175@gnu.org> Date: Sat, 4 Oct 2014 12:35:28 -0400 From: Glenn Morris To: GNU bug tracker automated control server Subject: Update Emacs archived fixed bugs for 24.5 version number change X-Debbugs-No-Ack: yes X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) unarchive 18304 fixed 18304 25.1 notfixed 18304 24.5 unarchive 12008 fixed 12008 25.1 notfixed 12008 24.5 unarchive 17110 fixed 17110 25.1 notfixed 17110 24.5 unarchive 17218 fixed 17218 25.1 notfixed 17218 24.5 unarchive 18222 fixed 18222 25.1 notfixed 18222 24.5 unarchive 18023 fixed 18023 25.1 notfixed 18023 24.5 unarchive 17225 fixed 17225 25.1 notfixed 17225 24.5 unarchive 16626 fixed 16626 25.1 notfixed 16626 24.5 unarchive 18326 fixed 18326 25.1 notfixed 18326 24.5 unarchive 18227 fixed 18227 25.1 notfixed 18227 24.5 unarchive 16328 fixed 16328 25.1 notfixed 16328 24.5 unarchive 17333 fixed 17333 25.1 notfixed 17333 24.5 unarchive 13837 fixed 13837 25.1 notfixed 13837 24.5 unarchive 17641 fixed 17641 25.1 notfixed 17641 24.5 unarchive 18341 fixed 18341 25.1 notfixed 18341 24.5 unarchive 18349 fixed 18349 25.1 notfixed 18349 24.5 unarchive 2151 fixed 2151 25.1 notfixed 2151 24.5 unarchive 5853 fixed 5853 25.1 notfixed 5853 24.5 unarchive 17857 fixed 17857 25.1 notfixed 17857 24.5 unarchive 17858 fixed 17858 25.1 notfixed 17858 24.5 unarchive 17859 fixed 17859 25.1 notfixed 17859 24.5 unarchive 17160 fixed 17160 25.1 notfixed 17160 24.5 unarchive 2263 fixed 2263 25.1 notfixed 2263 24.5 unarchive 18368 fixed 18368 25.1 notfixed 18368 24.5 unarchive 17772 fixed 17772 25.1 notfixed 17772 24.5 unarchive 17276 fixed 17276 25.1 notfixed 17276 24.5 unarchive 15991 fixed 15991 25.1 notfixed 15991 24.5 unarchive 17699 fixed 17699 25.1 notfixed 17699 24.5 From unknown Fri Jun 20 07:18:07 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 02 Nov 2014 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator