From 943375a63691afac939449ad4fc3beb9e6ace923 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 22 Jun 2010 00:04:20 -0700 Subject: [PATCH] Minor js.el fix. * lisp/progmodes/js.el (js-mode-map): Use standard capitalization and ellipses for menu entries. --- lisp/ChangeLog | 3 +++ lisp/progmodes/js.el | 9 ++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ef19f93455f..e6391ee7321 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-06-22 Glenn Morris + * progmodes/js.el (js-mode-map): Use standard capitalization and + ellipses for menu entries. + * wid-edit.el (widget-complete): Doc fix. 2010-06-22 Jürgen Hötzel (tiny change) diff --git a/lisp/progmodes/js.el b/lisp/progmodes/js.el index 6bd8fbc2442..60ed14afbac 100644 --- a/lisp/progmodes/js.el +++ b/lisp/progmodes/js.el @@ -474,8 +474,7 @@ for preventing Firefox from stealing the keyboard focus." (defcustom js-js-tmpdir "~/.emacs.d/js/js" "Temporary directory used by `js-mode' to communicate with Mozilla. -This directory must be readable and writable by both Mozilla and -Emacs." +This directory must be readable and writable by both Mozilla and Emacs." :type 'directory :group 'js) @@ -499,11 +498,11 @@ getting timeout messages." (define-key keymap [(meta ?.)] #'js-find-symbol) (easy-menu-define nil keymap "Javascript Menu" '("Javascript" - ["Select new Mozilla context…" js-set-js-context + ["Select New Mozilla Context..." js-set-js-context (fboundp #'inferior-moz-process)] - ["Evaluate expression in Mozilla context…" js-eval + ["Evaluate Expression in Mozilla Context..." js-eval (fboundp #'inferior-moz-process)] - ["Send current function to Mozilla…" js-eval-defun + ["Send Current Function to Mozilla..." js-eval-defun (fboundp #'inferior-moz-process)])) keymap) "Keymap for `js-mode'.") -- 2.11.4.GIT