]> git.eshelyaron.com Git - emacs.git/commitdiff
(gud-make-debug-menu): Cope if no local map yet.
authorRichard M. Stallman <rms@gnu.org>
Tue, 20 Jun 1995 16:34:14 +0000 (16:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 20 Jun 1995 16:34:14 +0000 (16:34 +0000)
lisp/gud.el

index 58e2670304f189b39357e357a8808396be57c87f..cf092dc5efb37522ebd9a1a1117ef8bba77ef069 100644 (file)
@@ -234,7 +234,8 @@ we're in the GUD buffer)."
   "Make sure the current local map has a [menu-bar debug] submap.
 If it doesn't, replace it with a new map that inherits it,
 and create such a submap in that new map."
-  (if (lookup-key (current-local-map) [menu-bar debug])
+  (if (and (current-local-map)
+          (lookup-key (current-local-map) [menu-bar debug]))
       nil
     (use-local-map (gud-new-keymap (current-local-map)))
     (define-key (current-local-map) [menu-bar debug]