comparison lispref/variables.texi @ 30502:0dca3aa6405a

*** empty log message ***
author Gerd Moellmann <gerd@gnu.org>
date Thu, 27 Jul 2000 13:28:26 +0000
parents cc4885ac4603
children 1cb37313bcac
comparison
equal deleted inserted replaced
30501:2c2ed2dae36f 30502:0dca3aa6405a
657 @example 657 @example
658 (defvar my-mode-map nil 658 (defvar my-mode-map nil
659 @var{docstring}) 659 @var{docstring})
660 (unless my-mode-map 660 (unless my-mode-map
661 (let ((map (make-sparse-keymap))) 661 (let ((map (make-sparse-keymap)))
662 (define-key my-mode-map "\C-c\C-a" 'my-command) 662 (define-key map "\C-c\C-a" 'my-command)
663 @dots{} 663 @dots{}
664 (setq my-mode-map map))) 664 (setq my-mode-map map)))
665 @end example 665 @end example
666 666
667 @noindent 667 @noindent