1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-11 16:08:13 +00:00

Minor js.el fix.

* lisp/progmodes/js.el (js-mode-map): Use standard capitalization and
ellipses for menu entries.
This commit is contained in:
Glenn Morris 2010-06-22 00:04:20 -07:00
parent 6095a05b11
commit 943375a636
2 changed files with 7 additions and 5 deletions

View File

@ -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)

View File

@ -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'.")