comparison lisp/edmacro.el @ 662:8a533acedb77

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 23:54:21 +0000
parents 1e0bc00dca7a
children 4f28bd14272c
comparison
equal deleted inserted replaced
661:36fbc3f71803 662:8a533acedb77
1 ;; Keyboard macro editor for GNU Emacs. Version 1.02. 1 ;;; edmacro.el --- keyboard macro editor for GNU Emacs. Version 1.02.
2
2 ;; Copyright (C) 1990 Free Software Foundation, Inc. 3 ;; Copyright (C) 1990 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
639 (put 'edmacro-mode 'mode-class 'special) 640 (put 'edmacro-mode 'mode-class 'special)
640 641
641 (if (boundp 'edmacro-mode-map) () 642 (if (boundp 'edmacro-mode-map) ()
642 (setq edmacro-mode-map (make-sparse-keymap)) 643 (setq edmacro-mode-map (make-sparse-keymap))
643 (define-key edmacro-mode-map "\C-c\C-c" 'edmacro-finish-edit)) 644 (define-key edmacro-mode-map "\C-c\C-c" 'edmacro-finish-edit))
645
646 ;;; edmacro.el ends here