diff options
| author | Eric S. Raymond | 1993-04-08 16:17:43 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-04-08 16:17:43 +0000 |
| commit | 235aa29bda408d144ba409e572daa557dc9c6f57 (patch) | |
| tree | ae81b1156acc621c3b2c4b458954f4283bc957bd | |
| parent | f395c83af3356d09b0beb7621fae87c25649c80b (diff) | |
| download | emacs-235aa29bda408d144ba409e572daa557dc9c6f57.tar.gz emacs-235aa29bda408d144ba409e572daa557dc9c6f57.zip | |
Added and corrected library headers.
| -rw-r--r-- | lisp/menu-bar.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index 61db6a99b6e..a805999a086 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -1,4 +1,8 @@ | |||
| 1 | ;;; menu-bar.el --- Define a default menu bar. | 1 | ;;; menu-bar.el --- define a default menu bar. |
| 2 | |||
| 3 | ;; Author: RMS | ||
| 4 | ;; Keywords: internals | ||
| 5 | |||
| 2 | ;; Copyright (C) 1993 Free Software Foundation, Inc. | 6 | ;; Copyright (C) 1993 Free Software Foundation, Inc. |
| 3 | 7 | ||
| 4 | ;; This file is part of GNU Emacs. | 8 | ;; This file is part of GNU Emacs. |
| @@ -17,6 +21,7 @@ | |||
| 17 | ;; along with GNU Emacs; see the file COPYING. If not, write to | 21 | ;; along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | 22 | ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | 23 | ||
| 24 | ;;; Code: | ||
| 20 | 25 | ||
| 21 | (define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")) | 26 | (define-key global-map [menu-bar] (make-sparse-keymap "menu-bar")) |
| 22 | (setq menu-bar-help-menu (make-sparse-keymap "Help")) | 27 | (setq menu-bar-help-menu (make-sparse-keymap "Help")) |
| @@ -199,4 +204,4 @@ and selects that window." | |||
| 199 | (setq default-frame-alist | 204 | (setq default-frame-alist |
| 200 | (cons '(menu-bar-lines . 1) default-frame-alist))) | 205 | (cons '(menu-bar-lines . 1) default-frame-alist))) |
| 201 | 206 | ||
| 202 | ;;; end of menu-bar.el | 207 | ;;; menu-bar.el ends here |