From debbugs-submit-bounces@debbugs.gnu.org Tue Dec 28 22:52:07 2021 Received: (at submit) by debbugs.gnu.org; 29 Dec 2021 03:52:07 +0000 Received: from localhost ([127.0.0.1]:47890 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2Q0U-0002Ta-VP for submit@debbugs.gnu.org; Tue, 28 Dec 2021 22:52:07 -0500 Received: from lists.gnu.org ([209.51.188.17]:33190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2Q0T-0002TT-BI for submit@debbugs.gnu.org; Tue, 28 Dec 2021 22:52:06 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39556) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n2Q0T-00050D-3W for bug-gnu-emacs@gnu.org; Tue, 28 Dec 2021 22:52:05 -0500 Received: from [2001:470:142:3::e] (port=56488 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n2Q0S-0007YR-P6 for bug-gnu-emacs@gnu.org; Tue, 28 Dec 2021 22:52:04 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=P+5Pb+01/Sl3jbhGTgZYHwibh9z+O7FqcPVo9hYQX5g=; b=q3oSO0yONU3He0 irOwt0ERqfaG3AsI3lodme3IPaIz5P4+IheAtv7JeNVDjq/qtEkrnNKYQUJgF2Qpbn4t15dQzGqHw 2+hGjPyBW6HwtigeSq4G61Wuy6tugoHk/SdJjaAvq1C5/tLjf6gHeOICgetV4Se/ZDZ9yIS56Tfvf ZB7gvRLnLMFG7VxofICbj6tNiKLRPxfBBe8nirCusPXDhE3vVfj9BDxEhjtTfQDz6hcsjuCsIodGD ifKQeOt4XyDIzbEBK/SsDkYrRF4wQT6IHpgm4SR2YjXS00gjH1CxXRJ70qf6erywNnp4makjt2DFu Z2A+jWkhL1czE+e6eMBg==; Received: from 211.68.17.95.dynamic.jazztel.es ([95.17.68.211]:47392 helo=rivendell.localdomain) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n2Q0S-0007AR-KA for bug-gnu-emacs@gnu.org; Tue, 28 Dec 2021 22:52:05 -0500 Received: from localhost (rivendell.localdomain [local]) by rivendell.localdomain (OpenSMTPD) with ESMTPA id 8e4aff08 for ; Wed, 29 Dec 2021 03:52:00 +0000 (UTC) From: "Jose A. Ortega Ruiz" To: bug-gnu-emacs@gnu.org Subject: 29.0.50; eshell: bash-completion as a capf is not working anymore User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) X-Attribution: jao X-Clacks-Overhead: GNU Terry Pratchett X-URL: Date: Wed, 29 Dec 2021 03:52:00 +0000 Message-ID: <87ilv8gja7.fsf@gnus.jao.io> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit 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: -3.3 (---) Hi, Recent changes in the master branch on eshell completion have broken a very useful CAPF i have been using for awhile and was working flawlessly. bash-completion is an elisp package that uses the underlying bash_completion scripts to provide the latter's functionality at the elisp level (nominally for use with M-! and friends). I have code like this to use it in eshell via capf: (defun jao-eshell-completion-capf () (let ((c (bash-completion-dynamic-complete-nocomint (save-excursion (eshell-bol) (point)) (point) t))) (when (and c (listp c)) (append c '(:exclusive no))))) (defun jao-eshell--add-bash-completion () (setq completion-at-point-functions '(jao-eshell-completion-capf pcomplete-completions-at-point t))) (add-hook 'eshell-mode-hook #'jao-eshell--add-bash-completion) bash-completion-dynamic-complete-nocomint is a function from the above-mentioned package that returns possible completions given a region, in the format expected from a CAPF (unless something changed). Since a few days ago, all those completions seem ignored and i only get the ones coming from pcomplete-completions-at-point, if any. Is there anything obviosuly wrong in the above that wouldn't have been wrong before the latest changes to eshell's complete mechanism? Thanks in advance from any hints: i realize this is not a good bug report as it stands, so i'd be happy to move it to emacs-devel if you prefer. Cheers, jao In GNU Emacs 29.0.50 (build 3, x86_64-pc-linux-gnu, cairo version 1.16.0) of 2021-12-28 built on rivendell Repository revision: 116fabcd29a08b62ec7568152213f3ae42b3d104 Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12013000 System Description: Debian GNU/Linux bookworm/sid Configured using: 'configure --prefix=/usr/local/stow/emacs --with-x-toolkit=no --with-imagemagick --with-native-compilation' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ IMAGEMAGICK JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY OLDXMENU PDUMPER PNG RSVG SECCOMP SOUND THREADS TIFF X11 XDBE XIM XPM ZLIB Important settings: value of $LANG: en_GB.UTF-8 locale-coding-system: utf-8-unix Major mode: Group Minor modes in effect: global-git-commit-mode: t magit-auto-revert-mode: t gnus-topic-mode: t gnus-undo-mode: t circe-lagmon-mode: t telega-root-auto-fill-mode: t telega-active-locations-mode: t telega-patrons-mode: t telega-mode-line-mode: t global-diff-hl-mode: t eshell-syntax-highlighting-global-mode: t pdf-occur-global-minor-mode: t shell-dirtrack-mode: t winner-mode: t global-auto-revert-mode: t marginalia-mode: t mct-mode: t corfu-global-mode: t corfu-mode: t persistent-scratch-autosave-mode: t global-so-long-mode: t display-battery-mode: t minibuffer-electric-default-mode: t minibuffer-depth-indicate-mode: t repeat-mode: t savehist-mode: t recentf-mode: t save-place-mode: t override-global-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-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 Load-path shadows: /home/jao/lib/elisp/org-static-blog/org-static-blog hides /home/jao/.emacs.d/elpa.29/org-static-blog-20211201.1221/org-static-blog /home/jao/etc/emacs/site/custom hides /usr/local/stow/emacs/share/emacs/29.0.50/lisp/custom /home/jao/.emacs.d/elpa.29/transient-20211226.738/transient hides /usr/local/stow/emacs/share/emacs/29.0.50/lisp/transient Features: (shadow flow-fill gnus-fun geiser-reload geiser-mode geiser-xref geiser-guile geiser geiser-repl geiser-compile geiser-debug geiser-image geiser-company geiser-doc geiser-menu geiser-edit geiser-completion geiser-autodoc geiser-eval geiser-connection geiser-syntax geiser-log geiser-popup geiser-impl geiser-custom geiser-base loadhist url-file url-dired pulse goto-chg cl-print debug backtrace url-cache shortdoc ucs-normalize bbdb-pgp org-id magit-extras misearch multi-isearch term/xterm xterm vc-mtn vc-hg vc-bzr vc-src vc-sccs vc-svn vc-cvs vc-rcs bug-reference git-rebase bash-completion em-unix em-script em-prompt em-ls em-hist em-pred em-glob em-cmpl em-basic em-banner magit-bookmark magit-submodule magit-obsolete magit-blame magit-stash magit-reflog magit-bisect magit-push magit-pull magit-fetch magit-clone magit-remote magit-commit magit-sequence magit-notes magit-worktree magit-tag magit-merge magit-branch magit-reset magit-files magit-refs magit-status magit magit-repos magit-apply magit-wip magit-log which-func magit-diff smerge-mode diff git-commit log-edit add-log magit-core magit-autorevert magit-margin magit-transient magit-process with-editor magit-mode magit-git magit-section magit-utils sh-script paredit display-fill-column-indicator smartscan executable copyright mailalias bbdb-message sort gnus-cite shr-color qp mm-archive mail-extr gnus-async gnus-bcklg gnus-dup gnus-ml gnus-topic nnml bbdb-gnus bbdb-mua gnus-icalendar ol-gnus nnselect gnus-search eieio-opt speedbar ezimage dframe gnus-delay gnus-draft gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-cache gnus-msg gnus-art mm-uu mml2015 gnus-sum nndraft nnmh gnus-demon nntp gnus-group gnus-undo gnus-start gnus-dbus gnus-cloud nnimap nnmail mail-source utf7 netrc nnoo gnus-spec gnus-int gnus-range gnus-win cal-move org-duration cal-iso org-appear cdlatex texmathp image-file image-converter face-remap emojify apropos tar-mode arc-mode archive-mode ht network-stream circe-display-images circe-lagmon lui-track circe lui-irc-colors irc lcs lui-logging lui-format circe-compat slack slack-company slack-unread slack-websocket slack-thread-event slack-room-event slack-star-event slack-reaction-event slack-reply-event slack-typing slack-slash-commands slack-message-event slack-event slack-dialog-edit-element-buffer slack-dialog-buffer slack-dialog slack-stars-buffer slack-search-result-buffer slack-thread-message-compose-buffer slack-file-list-buffer slack-file-info-buffer slack-all-threads-buffer slack-message-buffer slack-user-profile-buffer slack-pinned-items-buffer slack-pinned-item slack-thread-message-buffer slack-room-info-buffer slack-room-buffer slack-message-share-buffer slack-message-edit-buffer slack-room-message-compose-buffer slack-message-compose-buffer slack-message-attachment-preview-buffer slack-action slack-star slack-reminder slack-search slack-message-reaction slack-message-editor slack-message-sender slack-message-notification slack-buffer slack-message-formatter slack-thread slack-im slack-channel slack-group slack-conversations slack-create-message slack-attachment slack-selectable slack-bot-message slack-user-message slack-file slack-message slack-message-faces slack-unescape slack-block slack-mrkdwn slack-usergroup slack-reaction slack-modeline slack-room slack-counts slack-user slack-bot slack-dnd-status slack-emoji slack-image slack-request slack-log request lui flyspell ispell slack-team slack-team-ws slack-util websocket exwm-systemtray xcb-systemtray xcb-xembed exwm-edit exwm exwm-input xcb-keysyms xcb-xkb exwm-manage exwm-floating xcb-cursor xcb-render exwm-layout exwm-workspace exwm-core xcb-ewmh xcb-icccm xcb xcb-xproto xcb-types xcb-debug bigml bml-logs bml bml-misc bml-whizzml bml-clojure bml-clj-tests bml-python bml-skels bml-utils whizzml-skeletons skeleton whizzml-mode lice sieve sieve-mode sieve-manage sasl sasl-anonymous sasl-login sasl-plain jao-mpc jao-random-album jao-lyrics jao-mpris consult-spotify espotify telega-obsolete telega telega-tdlib-events telega-webpage visual-fill-column telega-root telega-info telega-chat telega-modes telega-company telega-user telega-notifications telega-voip telega-msg telega-tme telega-sticker telega-i18n telega-vvnote bindat telega-ffplay telega-media telega-sort telega-filter telega-ins telega-folders telega-inline telega-tdlib telega-util rainbow-identifiers dired-aux telega-server telega-core cursor-sensor telega-customize emacsbug sendmail jao-mullvad bluetooth json-mode json-snatcher js cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs virtualenvwrapper gud ediprolog haskell-doc inf-haskell haskell-decl-scan haskell haskell-completions haskell-load haskell-commands highlight-uses-mode haskell-modules haskell-sandbox haskell-navigate-imports haskell-repl haskell-svg haskell-collapse hideshow haskell-debug haskell-interactive-mode haskell-presentation-mode haskell-compile haskell-hoogle haskell-process haskell-session haskell-mode haskell-cabal haskell-utils haskell-font-lock haskell-indentation haskell-string haskell-sort-imports haskell-lexeme haskell-align-imports haskell-complete-module haskell-ghc-support flymake-proc flymake dabbrev haskell-customize pie info-look etags fileloop xref project scheme help-fns radix-tree package-lint finder lisp-mnt edit-list git-modes gitignore-mode gitconfig-mode conf-mode gitattributes-mode git-link git-timemachine url-http url-auth url-gw gh-profile diff-hl log-view pcvs-util vc-dir ewoc vc jao-eshell-here eshell-autojump em-dirs esh-var eshell-up git-ps1-mode em-term term disp-table ehelp eshell-syntax-highlighting em-alias saveplace-pdf-view pdf-occur ibuf-ext ibuffer ibuffer-loaddefs tablist tablist-filter semantic/wisent/comp semantic/wisent semantic/wisent/wisent semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw mode-local cedet pdf-isearch pdf-misc consult-notmuch org-capture jao-notmuch notmuch notmuch-tree notmuch-jump notmuch-hello notmuch-show notmuch-print notmuch-crypto notmuch-mua notmuch-message notmuch-draft notmuch-maildir-fcc notmuch-address notmuch-company notmuch-parser notmuch-wash coolj notmuch-query goto-addr icalendar notmuch-tag notmuch-lib notmuch-compat pcase hl-line mm-view mml-smime smime dig bbdb-anniv bbdb-com crm bbdb bbdb-site timezone randomsig message yank-media rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mailabbrev gmm-utils mailheader socks gnutls nsm rmc elpher ol-eww jao-eww-session eww xdg url-queue shr pixel-fill kinsoku svg dom puny mm-url gnus nnheader gnus-util mail-utils mm-util mail-prsvr markdown-toc dash s markdown-mode htmlize jao-org-links jao-maildir jao-doc-view let-alist doc-view pdf-tools pdf-view pdf-cache pdf-info tq pdf-util pdf-macs image-mode exif ol-info ol-bbdb ol-eshell esh-mode eshell esh-cmd esh-ext esh-opt esh-proc esh-io esh-arg esh-module esh-groups esh-util jao-org-notes ob-shell ob-scheme ob-python python tramp-sh tramp tramp-loaddefs trampver tramp-integration files-x tramp-compat shell parse-time ls-lisp ob-org ob-ocaml ob-makefile ob-haskell ob-gnuplot ob-clojure ob-calc calc-store calc-trail calc-ext calc calc-loaddefs rect calc-macs ob-prolog prolog smie align poly-org polymode poly-lock polymode-base polymode-weave polymode-export polymode-compat polymode-methods polymode-core polymode-classes eieio-custom eieio-base color org-tempo tempo ox-odt rng-loc rng-uri rng-parse rng-match rng-dt rng-util rng-pttrn nxml-parse nxml-ns nxml-enc xmltok nxml-util ox-latex ox-icalendar org-agenda org-refile ox-html table ox-ascii ox-publish ox org-element avl-tree generator org-fragtog jao-afio winner autorevert filenotify autoinsert embark-consult embark ffap thingatpt consult-recoll jao-compilation consult bookmark marginalia mct corfu orderless imenu find-dired dired-x dired dired-loaddefs wgrep grep compile text-property-search jka-compr persistent-scratch so-long view mule-util cal-china lunar solar cal-dst cal-bahai cal-islam cal-hebrew holidays hol-loaddefs vc-git diff-mode vc-dispatcher appt diary-lib diary-loaddefs jao-tracking tracking shorten jao-notify alert log4e notifications gntp battery time jao-minibuffer minibuf-eldef mb-depth jao-recoll diminish jao-light-theme jao-themes pinentry epa-file epa derived epg rfc6068 epg-config transient comp comp-cstr warnings cus-edit pp cus-load repeat edmacro kmacro jao-sleep dbus xml server savehist recentf tree-widget wid-edit saveplace gnu-elpa-keyring-update use-package use-package-ensure use-package-delight use-package-diminish use-package-bind-key bind-key use-package-core cl-extra help-mode org ob ob-tangle ob-ref ob-lob ob-table ob-exp org-macro org-footnote org-src ob-comint org-pcomplete pcomplete comint ansi-color ring org-list org-faces org-entities noutline outline easy-mmode org-version ob-emacs-lisp ob-core ob-eval org-table oc-basic bibtex iso8601 time-date ol org-keys oc org-compat advice org-macs org-loaddefs format-spec find-func cal-menu calendar cal-loaddefs finder-inf tex-site rx info package browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util mailcap url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json map url-vars seq gv subr-x byte-opt bytecomp byte-compile cconv cl-loaddefs cl-lib iso-transl tooltip eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer cl-generic cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 2439404 360512) (symbols 48 98096 159) (strings 32 549131 53137) (string-bytes 1 20899599) (vectors 16 239729) (vector-slots 8 7941621 301977) (floats 8 15162 8646) (intervals 56 112871 23656) (buffers 992 124)) -- The habit of reading is the only enjoyment in which there is no alloy; it lasts when all other pleasures fade. -Anthony Trollope, novelist (1815-1882) From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 29 10:27:36 2021 Received: (at 52865) by debbugs.gnu.org; 29 Dec 2021 15:27:36 +0000 Received: from localhost ([127.0.0.1]:49955 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2arY-0006AF-Lw for submit@debbugs.gnu.org; Wed, 29 Dec 2021 10:27:36 -0500 Received: from quimby.gnus.org ([95.216.78.240]:42700) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2arW-00069x-Ok for 52865@debbugs.gnu.org; Wed, 29 Dec 2021 10:27:35 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=imM3jiT0yuUmHbYTXawUzeK6CkOWis0e5yqMIZu+GXM=; b=S22CVDiekc/y/Uwcl0Xz7JHoeY ol+AP2KrwbHeHr/1phHE/Ph87ksR8cUmgKgbrOok+aqEQIqVaL8RNS67xaKn0yF2VCr2h+brN3oez h6ShIDjupPCLsQdiu4i/YEqXZJTx2T0SKGI5bQD/xtErBVEFSn/uSizYqUM/s9rJB2PM=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n2arO-00079e-30; Wed, 29 Dec 2021 16:27:28 +0100 From: Lars Ingebrigtsen To: "Jose A. Ortega Ruiz" Subject: Re: bug#52865: 29.0.50; eshell: bash-completion as a capf is not working anymore References: <87ilv8gja7.fsf@gnus.jao.io> X-Now-Playing: Four Tet's _Pole v Four Tet_: "Cload" Date: Wed, 29 Dec 2021 16:27:25 +0100 In-Reply-To: <87ilv8gja7.fsf@gnus.jao.io> (Jose A. Ortega Ruiz's message of "Wed, 29 Dec 2021 03:52:00 +0000") Message-ID: <8735mb77oi.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: "Jose A. Ortega Ruiz" writes: > Is there anything obviosuly wrong in the above that wouldn't have been > wrong before the latest changes to eshell's complete mechanism? I think that should work, so I guess some of the recent eshell changes must have broken something. Would it be possible for you to bisect to identify which commit broke this? Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 52865 Cc: 52865@debbugs.gnu.org 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: -3.3 (---) "Jose A. Ortega Ruiz" writes: > Is there anything obviosuly wrong in the above that wouldn't have been > wrong before the latest changes to eshell's complete mechanism? I think that should work, so I guess some of the recent eshell changes must have broken something. Would it be possible for you to bisect to identify which commit broke this? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Dec 29 10:27:45 2021 Received: (at control) by debbugs.gnu.org; 29 Dec 2021 15:27:45 +0000 Received: from localhost ([127.0.0.1]:49958 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2arg-0006AZ-TA for submit@debbugs.gnu.org; Wed, 29 Dec 2021 10:27:45 -0500 Received: from quimby.gnus.org ([95.216.78.240]:42714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n2ara-0006A2-O1 for control@debbugs.gnu.org; Wed, 29 Dec 2021 10:27:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=PCEKbgeKgE0ou54qfrwthS3FWFOm/Cdx0S8hGcZMzJI=; b=TLt7eKqRbncbX1oEBPovUc33Wj k4rB25vM5ywHjy4PKCHfuUdLntXfAvqciM25CO0Mfo7JPChlPMwZB+xEhaTfJMrlQv4BHc5qNAaXU U+SdBI55RRrc72dID+pyRABp2NfBxH4+QfdfAP+588UUBBvt30d0tAwHI51E400pQzzo=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n2arS-00079l-Qa for control@debbugs.gnu.org; Wed, 29 Dec 2021 16:27:32 +0100 Date: Wed, 29 Dec 2021 16:27:30 +0100 Message-Id: <871r1v77od.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #52865 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 52865 + moreinfo quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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: -3.3 (---) tags 52865 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 11 17:24:46 2022 Received: (at 52865) by debbugs.gnu.org; 11 Jan 2022 22:24:46 +0000 Received: from localhost ([127.0.0.1]:55806 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7PZO-0005Ew-95 for submit@debbugs.gnu.org; Tue, 11 Jan 2022 17:24:46 -0500 Received: from eggs.gnu.org ([209.51.188.92]:45856) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7PZM-0005Ed-Tj for 52865@debbugs.gnu.org; Tue, 11 Jan 2022 17:24:45 -0500 Received: from [2001:470:142:3::e] (port=32868 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7PZH-0004gG-2g; Tue, 11 Jan 2022 17:24:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=5w9VBaxe7y6DG2B7JmazAJ250xtXrAEzGTTEiKzJBVU=; b=Owc1yZzurYg7E126b5L0 c8P+qRduN9/SLZArLv84FvFnjADzePogrJp5xqtvVd3/EtmERFk79OACKbthOA+N6fBNh9BmBNo4g a4YXE5WMHu9MgSSzWLcNCv/ZVKD4REfDat0b5ucrTqr5hJV9O8S6cJvUefDKkUA7NCnwqIfEZzBtP boNjVrNoO5HVNuhywapvbuVlmjcCLQ8Jgct3fKBlE1ytxtD5naXeqQk2PAfIJYkktmUv96x0h7y6p /9RNoCSvtCpojV04czyBaPWrVCbVtG7U9uhX3rWKo8DgbFOIWvRFKWlQxxh4RShAlDmjgtH+TRx4j Md+7SoTBCMDROg==; Received: from 92.40.179.16.threembb.co.uk ([92.40.179.16]:29567 helo=rivendell.localdomain) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n7PZH-0007Ev-0F; Tue, 11 Jan 2022 17:24:39 -0500 Received: from localhost (rivendell.localdomain [local]) by rivendell.localdomain (OpenSMTPD) with ESMTPA id db9f637f; Tue, 11 Jan 2022 22:24:33 +0000 (UTC) From: Jose Antonio Ortega Ruiz To: Lars Ingebrigtsen Subject: Re: bug#52865: 29.0.50; eshell: bash-completion as a capf is not working anymore In-Reply-To: <8735mb77oi.fsf@gnus.org> References: <87ilv8gja7.fsf@gnus.jao.io> <8735mb77oi.fsf@gnus.org> X-Attribution: jao X-Clacks-Overhead: GNU Terry Pratchett X-URL: Date: Tue, 11 Jan 2022 22:24:33 +0000 Message-ID: <87ee5ddi72.fsf@gnus.jao.io> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 52865 Cc: 52865@debbugs.gnu.org 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: -3.3 (---) On Wed, Dec 29 2021, Lars Ingebrigtsen wrote: > "Jose A. Ortega Ruiz" writes: > >> Is there anything obviosuly wrong in the above that wouldn't have been >> wrong before the latest changes to eshell's complete mechanism? > > I think that should work, so I guess some of the recent eshell changes > must have broken something. Would it be possible for you to bisect to > identify which commit broke this? i just discovered the problem is with my configuration, concretely my settings for completion-styles, which were treating the - prefix specially. so this is in fact not a bug and the issue can be closed. sorry about the noise, and happy new year! From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 00:49:52 2022 Received: (at 52865) by debbugs.gnu.org; 12 Jan 2022 05:49:52 +0000 Received: from localhost ([127.0.0.1]:56051 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7WW7-0003YJ-P7 for submit@debbugs.gnu.org; Wed, 12 Jan 2022 00:49:51 -0500 Received: from quimby.gnus.org ([95.216.78.240]:39490) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7WW5-0003Xs-4G for 52865@debbugs.gnu.org; Wed, 12 Jan 2022 00:49:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=XV8u6bZZsv2ewpku3JDgBOw7yZCbuSpeWGVX1gE4KBY=; b=DnqJgLLl2UwumCp+XEi7nFv0wY SRb8g9p/gzPuYJlG0PzDUx9mobpkMRFyYQK11j//Y23dX5jtNjMIbZgsNnWi9s3Sq0V5Pz5NaWPGH QwCZbwyYHtKBhTg983ngZo/CHvMfUGm/fFcQFJ3KQiZasPMs0m6dGoJ1qP4fiOrZiqq0=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n7WVv-0006sr-2I; Wed, 12 Jan 2022 06:49:42 +0100 From: Lars Ingebrigtsen To: Jose Antonio Ortega Ruiz Subject: Re: bug#52865: 29.0.50; eshell: bash-completion as a capf is not working anymore References: <87ilv8gja7.fsf@gnus.jao.io> <8735mb77oi.fsf@gnus.org> <87ee5ddi72.fsf@gnus.jao.io> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAGFBMVEXNuarHq5SyjnHf 0r2aLDpQLStHLCr///9aH4LaAAAAAWJLR0QHFmGI6wAAAAd0SU1FB+YBDAUxEkhQcCYAAAGZSURB VDjLndGxUsMwDAZgB67McWh34guZC4YHaM9mBs7STi7S+z8CsmKXQtMFLbn4s37HijH/raa9Aje3 +yvir4LIap733pj9SqvPJU126FfA3yDytL9c9yMznMOtrwBMs7mEPYPUCtwR4C+oR7xwhnZFMEc9 nEO7wOYvdFPJIgA8gy1ngHv/+qdj5C/vX5kfRkgA77JiC8Dnk39DZmQBODS2wA4n1zGTCPKMUwUr 0A0sc2JCJvgs0JgNTM+PhLJdDKhAa9zI07DLJyhAsgLWNk7eeX5kLTmbC2x1KwU6ASm0owakAIgk 6yhh/QK4QFwa8hco2HG5WIgyp9+g2SG8pRA0irh3vcCuQAwh6P9gPjh3gqSQ4wQ+LiAo0FcBGZCA FkK+/qTQEfxAzEk8dc70dpl3Bd01S0eKUa6HFYJ8r87GcCkqENIQQAJNndwcfipKXAbM102nRS00 pJcFnk9nSMnDkP4BrBD19wKBqROtUa6UOTqXB1rPPdhcnUDjbMzbhgWOed1lGNLSOtSorkTVzArH /HK8Bm5w38Sz4AMzeJCqAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIyLTAxLTEyVDA1OjQ5OjE4KzAw OjAwW45kqAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMi0wMS0xMlQwNTo0OToxOCswMDowMCrT3BQA AAAASUVORK5CYII= X-Now-Playing: Dead Can Dance's _Spleen and Ideal_: "Avatar" Date: Wed, 12 Jan 2022 06:49:38 +0100 In-Reply-To: <87ee5ddi72.fsf@gnus.jao.io> (Jose Antonio Ortega Ruiz's message of "Tue, 11 Jan 2022 22:24:33 +0000") Message-ID: <87mtk1bj0t.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Jose Antonio Ortega Ruiz writes: > i just discovered the problem is with my configuration, concretely my > settings for completion-styles, which were treating the - prefix > specially. so this is in fact not a bug and the issue can b [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 52865 Cc: 52865@debbugs.gnu.org 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: -3.3 (---) Jose Antonio Ortega Ruiz writes: > i just discovered the problem is with my configuration, concretely my > settings for completion-styles, which were treating the - prefix > specially. so this is in fact not a bug and the issue can be closed. > sorry about the noise, and happy new year! No problem; I'm closing this bug report, then. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 12 00:50:05 2022 Received: (at control) by debbugs.gnu.org; 12 Jan 2022 05:50:05 +0000 Received: from localhost ([127.0.0.1]:56055 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7WWK-0003ZL-WF for submit@debbugs.gnu.org; Wed, 12 Jan 2022 00:50:05 -0500 Received: from quimby.gnus.org ([95.216.78.240]:39514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1n7WWI-0003Ya-MW for control@debbugs.gnu.org; Wed, 12 Jan 2022 00:50:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=1pDzAYHRLTQ5nTjuhHBf5WUp642lalLsltdRt+m8V94=; b=nXN/LdZGFJvDhcfw6pElQeTFD8 xCjm/LfE39m5mAXTwicS+keBODhBZuEolRdq8faGl5CeZUI3bSXXJURCiFv94slv28HRwrLQlwJuN q5NAnn3b2kPFNxBMRoZ31yAavqTcbn7qJYuHgVy217joioLRqyq7E9yQO+JQPz+7m1/s=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n7WWA-0006vI-Ov for control@debbugs.gnu.org; Wed, 12 Jan 2022 06:49:56 +0100 Date: Wed, 12 Jan 2022 06:49:53 +0100 Message-Id: <87lezlbj0e.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #52865 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 52865 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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: -3.3 (---) close 52865 quit From unknown Mon Aug 11 12:53:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 09 Feb 2022 12:24:06 +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