comparison lisp/progmodes/make-mode.el @ 12033:f7638ab47de7

Fix capitalization in menu bar.
author Karl Heuer <kwzh@gnu.org>
date Tue, 30 May 1995 23:05:08 +0000
parents 2b1d5f2e99cc
children ac7375e60931
comparison
equal deleted inserted replaced
12032:b60e87249b27 12033:f7638ab47de7
12 ;; Also, the doc strings need fixing: the first line doesn't stand alone, 12 ;; Also, the doc strings need fixing: the first line doesn't stand alone,
13 ;; and other usage is not high quality. Symbol names don't have `...'. 13 ;; and other usage is not high quality. Symbol names don't have `...'.
14 14
15 ;; So, for the meantime, this is not the default mode for makefiles. 15 ;; So, for the meantime, this is not the default mode for makefiles.
16 16
17 ;; $Id: makefile.el,v 1.19 1994/10/30 21:20:42 rms Exp rms $ 17 ;; $Id: makefile.el,v 1.20 1995/05/01 17:16:40 rms Exp kwzh $
18 18
19 ;; This file is part of GNU Emacs. 19 ;; This file is part of GNU Emacs.
20 20
21 ;; GNU Emacs is free software; you can redistribute it and/or modify 21 ;; GNU Emacs is free software; you can redistribute it and/or modify
22 ;; it under the terms of the GNU General Public License as published by 22 ;; it under the terms of the GNU General Public License as published by
303 ;; Make menus. 303 ;; Make menus.
304 (define-key makefile-mode-map [menu-bar makefile-mode] 304 (define-key makefile-mode-map [menu-bar makefile-mode]
305 (cons "Makefile" (make-sparse-keymap "Makefile"))) 305 (cons "Makefile" (make-sparse-keymap "Makefile")))
306 306
307 (define-key makefile-mode-map [menu-bar makefile-mode browse] 307 (define-key makefile-mode-map [menu-bar makefile-mode browse]
308 '("Pop up Makefile browser" . makefile-switch-to-browser)) 308 '("Pop up Makefile Browser" . makefile-switch-to-browser))
309 (define-key makefile-mode-map [menu-bar makefile-mode complete] 309 (define-key makefile-mode-map [menu-bar makefile-mode complete]
310 '("Complete target or macro" . makefile-complete)) 310 '("Complete Target or Macro" . makefile-complete))
311 (define-key makefile-mode-map [menu-bar makefile-mode pickup] 311 (define-key makefile-mode-map [menu-bar makefile-mode pickup]
312 '("Find targets and macros" . makefile-pickup-everything)) 312 '("Find Targets and Macros" . makefile-pickup-everything))
313 313
314 (define-key makefile-mode-map [menu-bar makefile-mode prev] 314 (define-key makefile-mode-map [menu-bar makefile-mode prev]
315 '("Move to previous dependency" . makefile-previous-dependency)) 315 '("Move to Previous Dependency" . makefile-previous-dependency))
316 (define-key makefile-mode-map [menu-bar makefile-mode next] 316 (define-key makefile-mode-map [menu-bar makefile-mode next]
317 '("Move to next dependency" . makefile-next-dependency))) 317 '("Move to Next Dependency" . makefile-next-dependency)))
318 318
319 (defvar makefile-browser-map nil 319 (defvar makefile-browser-map nil
320 "The keymap that is used in the macro- and target browser.") 320 "The keymap that is used in the macro- and target browser.")
321 (if makefile-browser-map 321 (if makefile-browser-map
322 () 322 ()