From unknown Wed Jun 18 23:13:53 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#67474 <67474@debbugs.gnu.org> To: bug#67474 <67474@debbugs.gnu.org> Subject: Status: 29.1; Buggy example in manual Reply-To: bug#67474 <67474@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:13:53 +0000 retitle 67474 29.1; Buggy example in manual reassign 67474 emacs submitter 67474 silarakta severity 67474 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 26 22:52:28 2023 Received: (at submit) by debbugs.gnu.org; 27 Nov 2023 03:52:28 +0000 Received: from localhost ([127.0.0.1]:43052 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7SfZ-0006Ok-CS for submit@debbugs.gnu.org; Sun, 26 Nov 2023 22:52:28 -0500 Received: from lists.gnu.org ([2001:470:142::17]:49544) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7P4C-0008M9-0z for submit@debbugs.gnu.org; Sun, 26 Nov 2023 19:01:39 -0500 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 1r7P40-0004Qd-HR for bug-gnu-emacs@gnu.org; Sun, 26 Nov 2023 19:01:24 -0500 Received: from mail-4318.protonmail.ch ([185.70.43.18]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r7P3x-0005M0-RT for bug-gnu-emacs@gnu.org; Sun, 26 Nov 2023 19:01:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1701043275; x=1701302475; bh=mU5y+fmJwnhn+09MjyETQbd6HONWE9MXBRg3Fk6uu0c=; h=Date:To:From:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=J4aS+gdpvrSMevN9WzlwSXxGcoFT91xt40/RR71h0SSMZn64VRUKubpEHAAkag3Ho t5ZMQrIlLL5yB/pdgtPpR9nbn5n6JkqEyEFOm7GmQwyUnmJN/gWMDgkKD6TOqPZhhl eqXQL886gPLnwmj8PQR2oLfMfIExGFj87Ll3ADfF2n92b3SqjEPbwWMxt2uUmUt+GT H7DYbjxZHBoWh4EsIRVmGL4YWJ7n7O5CQvBhskdy3CiYzY89mYdZ7Xl0K9mAJMD2iL NhYKl7fnLj8T0rznMXEHGeHH+Ba2GAZ+rxhLvprMSizVmH7w6lBaU3KJPstgriqPlg zbweg3l4+bQIw== Date: Mon, 27 Nov 2023 00:01:07 +0000 To: "bug-gnu-emacs@gnu.org" From: silarakta Subject: 29.1; Buggy example in manual Message-ID: Feedback-ID: 71861000:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.18; envelope-from=silarakta@protonmail.com; helo=mail-4318.protonmail.ch X-Spam_score_int: -30 X-Spam_score: -3.1 X-Spam_bar: --- X-Spam_report: (-3.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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H5=-1, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 26 Nov 2023 22:52:24 -0500 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.0 (/) In Customization > Key Bindings > Init Rebinding ("50.3.6 Rebinding Keys in= Your Init File"), the last example reads: (add-hook 'texinfo-mode-hook (lambda () (keymap-set texinfo-mode-map "C-c p" 'backward-paragraph) (keymap-set texinfo-mode-map "C-c n" 'forward-paragraph))) (keymap-set texinfo-mode-map "C-c C-x x" nil) Parentheses in the second-to-last line are misplaced. Corrected example: (add-hook 'texinfo-mode-hook (lambda () (keymap-set texinfo-mode-map "C-c p" 'backward-paragraph) (keymap-set texinfo-mode-map "C-c n" 'forward-paragraph) (keymap-set texinfo-mode-map "C-c C-x x" nil))) Sila In GNU Emacs 29.1 (build 2, x86_64-suse-linux-gnu, GTK+ Version 3.24.38, cairo version 1.18.0) Windowing system distributor 'The X.Org Foundation', version 11.0.12101009 System Description: openSUSE Tumbleweed Configured using: 'configure --disable-build-details --without-pop --with-mailutils --with-native-compilation --without-hesiod --with-gameuser=3D:games --with-kerberos --with-kerberos5 --with-file-notification=3Dinotify --with-modules --enable-autodepend --prefix=3D/usr --mandir=3D/usr/share/man --infodir=3D/usr/share/info --datadir=3D/usr/sha= re --localstatedir=3D/var --sharedstatedir=3D/var/lib --libexecdir=3D/usr/libexec --with-file-notification=3Dyes --libdir=3D/usr/lib64 --enable-locallisppath=3D/usr/share/emacs/29.1/site-lisp:/usr/share/emacs/= site-lisp --with-x --with-xim --with-sound --with-xpm --with-jpeg --with-tiff --with-gif --with-png --with-rsvg --with-dbus --with-webp --with-xft --with-imagemagick --without-gpm --with-x-toolkit=3Dgtk3 --without-pgtk --with-toolkit-scroll-bars --x-includes=3D/usr/include --x-libraries=3D/usr/lib64 --with-libotf --with-m17n-flt --with-cairo --with-xwidgets --build=3Dx86_64-suse-linux --with-dumping=3Dpdumper 'CFLAGS=3D-O2 -Wall -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3D3 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -Werror=3Dreturn-type -flto=3Dauto -g -D_GNU_SOURCE -DGDK_DISABLE_DEPRECATION_WARNINGS -DGLIB_DISABLE_DEPRECATION_WARNINGS -pipe -Wno-pointer-sign -Wno-unused-variable -Wno-unused-label -fno-optimize-sibling-calls -DPDMP_BASE=3D'\''"emacs-gtk"'\''' LDFLAGS=3D-Wl,-O2' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ IMAGEMAGICK JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM XWIDGETS GTK3 ZLIB Important settings: value of $LC_ALL: C.UTF-8 value of $LC_NUMERIC: POSIX value of $LANG: C.UTF-8 value of $XMODIFIERS: @im=3Dlocal locale-coding-system: utf-8-unix Major mode: Help Minor modes in effect: windmove-mode: t auto-insert-mode: t recentf-mode: t global-whitespace-mode: t global-so-long-mode: t global-hl-line-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t isearch-fold-quotes-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t window-divider-mode: t buffer-read-only: t column-number-mode: t line-number-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message yank-media puny dired dired-loaddefs rfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util time-date mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils windmove shortdoc text-property-search info-look help-fns radix-tree misearch multi-isearch mule-util jka-compr disp-table autoinsert cc-styles cc-align cc-engine cc-vars cc-defs manoj-dark-theme recentf tree-widget wid-edit whitespace so-long hl-line cus-load finder-inf comp comp-cstr warnings icons rx cl-extra help-mode preview-latex tex-site auto-complete-autoloads epc-autoloads ctable-autoloads concurrent-autoloads f-autoloads ht-autoloads info dash-autoloads lv-autoloads markdown-mode-autoloads popup-autoloads pos-tip-autoloads python-environment-autoloads deferred-autoloads s-autoloads spinner-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 password-cache json subr-x map byte-opt gv bytecomp byte-compile url-vars cl-loaddefs cl-lib rmc delsel lpr easy-mmode pcase 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 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 xwidget-internal dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 231239 14808) (symbols 48 14043 0) (strings 32 54404 3256) (string-bytes 1 1684190) (vectors 16 29646) (vector-slots 8 615371 22076) (floats 8 142 327) (intervals 56 4968 0) (buffers 984 15)) From debbugs-submit-bounces@debbugs.gnu.org Mon Nov 27 08:04:50 2023 Received: (at 67474-done) by debbugs.gnu.org; 27 Nov 2023 13:04:51 +0000 Received: from localhost ([127.0.0.1]:43493 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7bIA-0007Mh-Le for submit@debbugs.gnu.org; Mon, 27 Nov 2023 08:04:50 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52842) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7bI8-0007MP-83 for 67474-done@debbugs.gnu.org; Mon, 27 Nov 2023 08:04:49 -0500 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 1r7bHw-0006fa-Kw; Mon, 27 Nov 2023 08:04:36 -0500 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=FBp3C7vuFg0lm7puWmdkzOO9nItFGBU6g2GS5DiSsm8=; b=jnoPgqYt7yAj /JKWOxKin4sp0RKUFxjVJ6Y84AarT6xqQS3bRlkbRHG8D3HNwqPDJfCdj6o/yxOcT19zT1GRvAwrE Pc/Gqq/E9T97yXIkEz4SRI6+LWKNgCO4e7rggoPHyDw2upGME9RaRn78qMGqCVH3kH0rY+YJLXZL7 F0pSO5yf/oHp7qm98l1ekSwUY1YV+MuLgN57escHdFlY73je+jmD4BKH/rq60/RVXKxjolfSwe2xb E97PX1bTg8Qp+1yFyYI/JLq6TDYacSk4P5UeTx7ou+OHcdxUZyVBlWADRwQgwwcK11n/6dtHAfNMA aEfwltVzDTBDKplxizOG9g==; Date: Mon, 27 Nov 2023 15:04:21 +0200 Message-Id: <83zfyz8i0a.fsf@gnu.org> From: Eli Zaretskii To: silarakta In-Reply-To: (bug-gnu-emacs@gnu.org) Subject: Re: bug#67474: 29.1; Buggy example in manual References: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 67474-done Cc: 67474-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: Mon, 27 Nov 2023 00:01:07 +0000 > From: silarakta via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > > In Customization > Key Bindings > Init Rebinding ("50.3.6 Rebinding Keys in Your Init File"), the last example reads: > > (add-hook 'texinfo-mode-hook > (lambda () > (keymap-set texinfo-mode-map "C-c p" > 'backward-paragraph) > (keymap-set texinfo-mode-map "C-c n" > 'forward-paragraph))) > (keymap-set texinfo-mode-map "C-c C-x x" nil) > > Parentheses in the second-to-last line are misplaced. > Corrected example: > > (add-hook 'texinfo-mode-hook > (lambda () > (keymap-set texinfo-mode-map "C-c p" > 'backward-paragraph) > (keymap-set texinfo-mode-map "C-c n" > 'forward-paragraph) > (keymap-set texinfo-mode-map "C-c C-x x" nil))) > Thanks, fixed on the emacs-29 branch, and closing the bug. From unknown Wed Jun 18 23:13:53 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 26 Dec 2023 12: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