all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Yuri Khan <yuri.v.khan@gmail.com>
To: michael-franzese@gmx.com, Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: Re: Changing outline-minor-mode keybindings for texinfo files
Date: Fri, 14 May 2021 23:00:14 +0700	[thread overview]
Message-ID: <CAP_d_8WknCuCfp2JEYVf=ARYzG5jYgk0ga_HHRQVmsjxRVsY0A@mail.gmail.com> (raw)
In-Reply-To: <YJ6DLWubsSI8yz3J@protected.localdomain>

On Fri, 14 May 2021 at 21:06, Jean Louis <bugs@gnu.support> wrote:

> > (defun vmove-keytrigger ()
> >    "Visualises outline and moves texinfo code."
> >
> >    (let ( (map texinfo-mode-map) )
> >      (define-key map (kbd "H-q") #'outline-hide-sublevels)
> >      (define-key map (kbd "H-b") #'outline-hide-body)
> >      (define-key map (kbd "H-<up>") #'outline-move-subtree-up)
> >      (define-key map (kbd "H-<down>") #'outline-move-subtree-down) ))
> >
> > (add-hook 'texinfo-mode-hook 'vmove-keytrigger)
>
> In my opinion that hook, when it runs, internally get that all
> defined, but once function finishes, nothing yields out of it, because
> it is within `let' enclosure and because you are working on a
> temporary variable `map'.

No, because ‘map’ is a reference to the same object that
‘texinfo-mode-map’ refers to. Within the functions, they are two names
of the same data structure. Changes made through one name within the
function are then visible through the other name after the function
returns.



  reply	other threads:[~2021-05-14 16:00 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-14  5:47 Changing outline-minor-mode keybindings for texinfo files michael-franzese
2021-05-14  7:28 ` michael-franzese
2021-05-14  9:51   ` Jean Louis
2021-05-14 10:04     ` michael-franzese
2021-05-14 12:24       ` michael-franzese
2021-05-14 13:31         ` michael-franzese
2021-05-14 14:03           ` Jean Louis
2021-05-14 16:00             ` Yuri Khan [this message]
2021-05-14 16:19               ` michael-franzese
2021-05-14 18:49               ` Jean Louis
2021-05-15 21:10                 ` tomas
2021-05-14 16:20           ` Yuri Khan
2021-05-14 16:36             ` michael-franzese
2021-05-14 20:10               ` Yuri Khan
2021-05-15  5:25                 ` michael-franzese
2021-05-15  5:58                   ` Yuri Khan
2021-05-15  6:07                     ` michael-franzese
2021-05-15  6:35                       ` Yuri Khan
2021-05-15  5:59                 ` michael-franzese
2021-05-15  6:02                   ` Yuri Khan
2021-05-15  6:21                     ` michael-franzese
2021-05-15  6:36                       ` Yuri Khan
2021-05-15  8:40                         ` michael-franzese
2021-05-15  9:00                           ` Yuri Khan
2021-05-15 10:48                             ` michael-franzese
2021-05-14 18:13             ` michael-franzese
2021-05-14 13:55         ` Jean Louis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAP_d_8WknCuCfp2JEYVf=ARYzG5jYgk0ga_HHRQVmsjxRVsY0A@mail.gmail.com' \
    --to=yuri.v.khan@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=michael-franzese@gmx.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.