From: Karl Heuer Date: Fri, 16 Jun 1995 05:19:43 +0000 (+0000) Subject: (Fsubstitute_command_keys): X-Git-Tag: emacs-19.34~3598 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f73d11631e994a3336588979c1506913ba6188e4;p=emacs.git (Fsubstitute_command_keys): Check Voverriding_terminal_local_map before Voverriding_local_map. --- diff --git a/src/doc.c b/src/doc.c index f022396eff3..8fcf91e1be7 100644 --- a/src/doc.c +++ b/src/doc.c @@ -553,7 +553,9 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int or a specified local map (which means search just that and the global map). If non-nil, it might come from Voverriding_local_map, or from a \\ construct in STR itself.. */ - keymap = Voverriding_local_map; + keymap = current_kboard->Voverriding_terminal_local_map; + if (NILP (keymap)) + keymap = Voverriding_local_map; bsize = XSTRING (str)->size; bufp = buf = (unsigned char *) xmalloc (bsize);