Mercurial > emacs
changeset 109258:1df511d197fe
Minor js.el fix.
* lisp/progmodes/js.el (js-mode-map): Use standard capitalization and
ellipses for menu entries.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 22 Jun 2010 00:04:20 -0700 |
parents | d55f872d898a |
children | e76d2bc9dbbe |
files | lisp/ChangeLog lisp/progmodes/js.el |
diffstat | 2 files changed, 7 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Jun 21 20:24:22 2010 -0700 +++ b/lisp/ChangeLog Tue Jun 22 00:04:20 2010 -0700 @@ -1,5 +1,8 @@ 2010-06-22 Glenn Morris <rgm@gnu.org> + * 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 <juergen@hoetzel.info> (tiny change)
--- a/lisp/progmodes/js.el Mon Jun 21 20:24:22 2010 -0700 +++ b/lisp/progmodes/js.el Tue Jun 22 00:04:20 2010 -0700 @@ -474,8 +474,7 @@ (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 @@ (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'.")