From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 24 10:16:06 2024 Received: (at submit) by debbugs.gnu.org; 24 Apr 2024 14:16:07 +0000 Received: from localhost ([127.0.0.1]:58671 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rzdPf-0005ue-8V for submit@debbugs.gnu.org; Wed, 24 Apr 2024 10:16:05 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50526) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rzdPT-0005qJ-Mt for submit@debbugs.gnu.org; Wed, 24 Apr 2024 10:15:51 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rzdOw-0002fC-9N for bug-gnu-emacs@gnu.org; Wed, 24 Apr 2024 10:15:10 -0400 Received: from ledu-giraud.fr ([51.159.28.247]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rzdOs-0007yr-FP for bug-gnu-emacs@gnu.org; Wed, 24 Apr 2024 10:15:09 -0400 DKIM-Signature: v=1; a=ed25519-sha256; c=simple/simple; s=ed25519; bh=YCx5kD7t QVbziTEUrNB+2L4aFwNg/5C3jR+rHqYZIdU=; h=date:subject:to:from; d=ledu-giraud.fr; b=5vtWaZHD6/tP+/ZUNJRgvOpU/akvvwb+VYKmmGFHU5rDFWdnCx 9rXc49qJb3gt3jvan0ejc5bU1P3ONGioE9Ag== DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; s=rsa; bh=YCx5kD7tQVbziTEU rNB+2L4aFwNg/5C3jR+rHqYZIdU=; h=date:subject:to:from; d=ledu-giraud.fr; b=hNkZ7d+9te+xjeA/3f8jcS6ZMfRephIiKihXzLjR2xZ7KX6Bc7 F4Plxhd8dEXxVvoOOzu1gllUAoXxY0TpOFcF8WmPy8jDZFtbn9X2danlkTmXyZPgpVG5f9 e1qHaNGsWQRrrh+SrhGgHKbv6vAXclUqk64kdHVWqoOCF5TTClhlwXtqBNfTH8b4gnH/gY JMpB1RdhcmV3QVloFhbUcig3g+nZjCkuWyGzFa1rvy+ChSvZtcpSlzXlAwSU56IAELpZPo ZGck9zNx9o4RocYyv9a8LaTEl1KtCUWlD0Lfvpqq44q3LLn1tIS9l3BpA31RVYGnDB7qEF Pm0xZuLgt6Hg== Received: from computer ( [10.1.1.1]) by ledu-giraud.fr (OpenSMTPD) with ESMTPSA id cf67bc75 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for ; Wed, 24 Apr 2024 16:15:00 +0200 (CEST) From: Manuel Giraud To: bug-gnu-emacs@gnu.org Subject: 30.0.50; [PATCH] Fix `find-grep-dired' with default OpenBSD's grep X-Debbugs-Cc: Date: Wed, 24 Apr 2024 16:14:59 +0200 Message-ID: <87mspi97a4.fsf@ledu-giraud.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=51.159.28.247; envelope-from=manuel@ledu-giraud.fr; helo=ledu-giraud.fr X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) --=-=-= Content-Type: text/plain Hi, The '-q' switch is supported by OpenBSD's grep and '-s' does not do the right thing. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Fix-find-grep-dired-with-default-OpenBSD-s-grep.patch >From f18d9fdfa96cb699113714fd24c0860eef973556 Mon Sep 17 00:00:00 2001 From: Manuel Giraud Date: Wed, 24 Apr 2024 16:10:43 +0200 Subject: [PATCH] Fix `find-grep-dired' with default OpenBSD's grep * lisp/find-dired.el (find-grep-options): Select '-q' on OpenBSD too. --- lisp/find-dired.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/find-dired.el b/lisp/find-dired.el index 41581cc7900..fa0c034c816 100644 --- a/lisp/find-dired.el +++ b/lisp/find-dired.el @@ -120,7 +120,8 @@ find-ls-subdir-switches :group 'find-dired) (defcustom find-grep-options - (if (or (eq system-type 'berkeley-unix) + (if (or (and (eq system-type 'berkeley-unix) + (not (string-match "openbsd" system-configuration))) (string-match "solaris2" system-configuration)) "-s" "-q") "Option to grep to be as silent as possible. -- 2.44.0 --=-=-= Content-Type: text/plain In GNU Emacs 30.0.50 (build 2, x86_64-unknown-openbsd7.5) of 2024-04-23 built on computer Repository revision: cd56e85c08307915941d5ae03a02569a52a2889c Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12101012 System Description: OpenBSD computer 7.5 GENERIC.MP#31 amd64 Configured using: 'configure CC=egcc CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib MAKEINFO=gmakeinfo --prefix=/home/manuel/emacs --bindir=/home/manuel/bin --with-x-toolkit=no --without-cairo --without-gconf --without-compress-install' Configured features: DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG LCMS2 LIBOTF LIBXML2 MODULES NOTIFY KQUEUE OLDXMENU PDUMPER PNG RSVG SQLITE3 THREADS TIFF TREE_SITTER WEBP X11 XDBE XFT XIM XINPUT2 XPM ZLIB Important settings: value of $LC_CTYPE: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Dired by name Minor modes in effect: windmove-mode: t gnus-dired-mode: t display-time-mode: t display-battery-mode: t desktop-save-mode: t server-mode: t override-global-mode: t repeat-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 blink-cursor-mode: t minibuffer-regexp-mode: t buffer-read-only: t line-number-mode: t indent-tabs-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: /home/manuel/.emacs.d/elpa/ef-themes-1.6.1/theme-loaddefs hides /home/manuel/emacs/share/emacs/30.0.50/lisp/theme-loaddefs Features: (shadow mail-extr emacsbug ffap cl-print shortdoc comp-common org-duration org-indent oc-basic ol-eww ol-rmail ol-mhe ol-irc ol-info ol-gnus nnselect ol-docview doc-view filenotify image-mode exif ol-bibtex bibtex ol-bbdb ol-w3m ol-doi org-link-doi org-agenda org-element org-persist org-id avl-tree completion dos-w32 find-cmd hmouse-tag hsys-xref hpath hsettings hui-em-but hbut hmouse-drv hui-window hycontrol windmove hui-select hbdata hgnus hsmail hypb gnus-icalendar org-capture org-refile org ob ob-tangle ob-ref ob-lob ob-table ob-exp org-macro org-src ob-comint org-pcomplete org-list org-footnote org-faces org-entities org-version ob-emacs-lisp ob-core ob-eval org-cycle org-table ol org-fold org-fold-core org-keys oc org-loaddefs org-compat org-macs locate hmail htz cal-julian hbmap hmoccur hvar hversion hload-path help-fns radix-tree log-edit pcmpl-unix smerge-mode diff make-mode vc-bzr vc-src vc-sccs vc-svn vc-cvs vc-rcs view tabify imenu man add-log log-view pcvs-util whitespace bug-reference sort find-dired vc-annotate descr-text dabbrev face-remap misearch multi-isearch pulse thai-util thai-word sh-script smie treesit executable cus-edit cus-start finder-inf mm-archive shr-color textsec uni-scripts idna-mapping ucs-normalize uni-confusable textsec-check network-stream url-cache ibuf-ext ibuffer ibuffer-loaddefs vc-hg vc-dir ewoc vc vc-git diff-mode track-changes vc-dispatcher paredit eww url-queue mm-url mule-util jka-compr on-screen gnus-dired time battery cus-load desktop frameset exwm-randr xcb-randr exwm-config ido 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 server modus-operandi-theme modus-themes zone speed-type url-http url-auth url-gw nsm compat ytdious mpdired transmission color calc-bin calc-ext calc calc-loaddefs rect calc-macs supercite regi ebdb-message ebdb-gnus gnus-msg gnus-art mm-uu mml2015 mm-view mml-smime smime gnutls dig gnus-sum shr pixel-fill kinsoku url-file svg dom gnus-group gnus-undo gnus-start gnus-dbus dbus xml gnus-cloud nnimap nnmail mail-source utf7 nnoo gnus-spec gnus-int gnus-range message sendmail yank-media puny rfc822 mml mml-sec epa epg rfc6068 epg-config mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums gmm-utils mailheader gnus-win ebdb-mua ebdb-com crm ebdb-format ebdb mailabbrev eieio-opt speedbar ezimage dframe find-func eieio-base timezone icalendar gnus nnheader gnus-util mail-utils range mm-util mail-prsvr wid-edit web-mode derived disp-table erlang-start skeleton cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs slime-asdf grep slime-tramp tramp rx trampver tramp-integration files-x tramp-message tramp-compat xdg shell pcomplete parse-time iso8601 time-date format-spec tramp-loaddefs slime-fancy slime-indentation slime-cl-indent cl-indent slime-trace-dialog slime-fontifying-fu slime-package-fu slime-references slime-compiler-notes-tree advice slime-scratch slime-presentations bridge slime-macrostep macrostep slime-mdot-fu slime-enclosing-context slime-fuzzy slime-fancy-trace slime-fancy-inspector slime-c-p-c slime-editing-commands slime-autodoc slime-repl slime-parse slime apropos compile text-property-search etags fileloop generator xref project arc-mode archive-mode noutline outline pp comint ansi-osc ansi-color ring hyperspec thingatpt slime-autoloads edmacro kmacro use-package-bind-key bind-key appt diary-lib diary-loaddefs cal-menu calendar cal-loaddefs pcase dired-x dired-aux dired dired-loaddefs use-package-core repeat easy-mmode debbugs-autoloads ebdb-autoloads cl-extra help-mode ef-themes-autoloads exwm-autoloads hyperbole-autoloads kotl-autoloads hact set hhist magit-autoloads git-commit-autoloads magit-section-autoloads dash-autoloads on-screen-autoloads osm-autoloads paredit-autoloads rust-mode-autoloads speed-type-autoloads transmission-autoloads info with-editor-autoloads ytdious-autoloads package browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie generate-lisp-file url-domsuf url-util mailcap url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs icons password-cache json subr-x map byte-opt gv bytecomp byte-compile url-vars cl-loaddefs cl-lib rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd touch-screen 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 nadvice seq simple cl-generic indonesian philippine 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 abbrev obarray oclosure cl-preloaded button loaddefs theme-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 kqueue lcms2 dynamic-setting system-font-setting font-render-setting xinput2 x multi-tty move-toolbar make-network-process emacs) Memory information: ((conses 16 1436639 811533) (symbols 48 74944 2) (strings 32 424597 62816) (string-bytes 1 10471248) (vectors 16 183291) (vector-slots 8 2557116 41081) (floats 8 734 13699) (intervals 56 50833 10796) (buffers 992 84)) -- Manuel Giraud --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 27 05:33:30 2024 Received: (at 70550-done) by debbugs.gnu.org; 27 Apr 2024 09:33:30 +0000 Received: from localhost ([127.0.0.1]:38928 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s0eR0-0001M3-8u for submit@debbugs.gnu.org; Sat, 27 Apr 2024 05:33:30 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54726) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1s0eQy-0001LI-Sq for 70550-done@debbugs.gnu.org; Sat, 27 Apr 2024 05:33:29 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1s0eQa-0005Sl-AV; Sat, 27 Apr 2024 05:33:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=1lIH8mAf5SbpRIG08wxT8gbCqX4SaqyxdhsRjVB4+dQ=; b=jp+ICFpZEovw +g2pDgHYXsDfXiHrHdGTww9p1zpsUcVhZZ4KoCnQRTp9MYp3/1BTfMkk8Bx/eun99obVNYkvav9cp xfaTq8zIoH7dRGlUDShNh5fHOW3G7t1BdT2vauGtzR+UifCmecITufiLzAm9om4aAJaaCa7vaDdp6 gwrN6SmS5L9/SpOfypdS66+89Ugod9pQL9UcvEV9tTCcZ3BzK4jmkyVWMnPOFqZeW2uYjBdsboGB9 Lsjnrt6CL7yWFT02XW0cqw1ZFslO6x+vogqClLBqmEjjEvjIfVYImBRHpPlv6x5zOHOuUKhW2Cobi LMDdG1CbP2sqKgbr9NRe+Q==; Date: Sat, 27 Apr 2024 12:32:59 +0300 Message-Id: <86edarw3p0.fsf@gnu.org> From: Eli Zaretskii To: Manuel Giraud In-Reply-To: <87mspi97a4.fsf@ledu-giraud.fr> (bug-gnu-emacs@gnu.org) Subject: Re: bug#70550: 30.0.50; [PATCH] Fix `find-grep-dired' with default OpenBSD's grep References: <87mspi97a4.fsf@ledu-giraud.fr> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 70550-done Cc: 70550-done@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 (---) > Date: Wed, 24 Apr 2024 16:14:59 +0200 > From: Manuel Giraud via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > The '-q' switch is supported by OpenBSD's grep and '-s' does not do the > right thing. Thanks, installed on the master branch, and closing the bug. From unknown Sun Jun 22 17:18:13 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 25 May 2024 11:24:10 +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