[ELPA-diffs] /srv/bzr/emacs/elpa r329: Re-apply the Toggles -> Toggle wording change

2012-12-25 Thread Dmitry Gutov

revno: 329
committer: Dmitry Gutov 
branch nick: elpa
timestamp: Wed 2012-12-26 07:25:06 +0400
message:
  Re-apply the Toggles -> Toggle wording change
modified:
  packages/js2-mode/js2-mode.el
=== modified file 'packages/js2-mode/js2-mode.el'
--- a/packages/js2-mode/js2-mode.el 2012-12-25 00:17:58 +
+++ b/packages/js2-mode/js2-mode.el 2012-12-26 03:25:06 +
@@ -10705,7 +10705,7 @@
 (js2-indent-line)))
 
 (defun js2-beginning-of-line ()
-  "Toggles point between bol and first non-whitespace char in line.
+  "Toggle point between bol and first non-whitespace char in line.
 Also moves past comment delimiters when inside comments."
   (interactive)
   (let (node beg)
@@ -10725,7 +10725,7 @@
   (goto-char (point-at-bol))
 
 (defun js2-end-of-line ()
-  "Toggles point between eol and last non-whitespace char in line."
+  "Toggle point between eol and last non-whitespace char in line."
   (interactive)
   (if (eolp)
   (skip-chars-backward " \t")



[ELPA-diffs] /srv/bzr/emacs/elpa r330: * js2-mode: same for Returns -> Return

2012-12-25 Thread Dmitry Gutov

revno: 330
committer: Dmitry Gutov 
branch nick: elpa
timestamp: Wed 2012-12-26 07:35:11 +0400
message:
  * js2-mode: same for Returns -> Return
modified:
  packages/js2-mode/js2-mode.el
=== modified file 'packages/js2-mode/js2-mode.el'
--- a/packages/js2-mode/js2-mode.el 2012-12-26 03:25:06 +
+++ b/packages/js2-mode/js2-mode.el 2012-12-26 03:35:11 +
@@ -6693,7 +6693,7 @@
  (t t
 
 (defun js2-wrapper-function-p (node)
-  "Returns t if NODE is a function expression that's immediately invoked.
+  "Return t if NODE is a function expression that's immediately invoked.
 NODE must be `js2-function-node'."
   (let ((parent (js2-node-parent node)))
 (or
@@ -6952,7 +6952,7 @@
   tt)))  ; return unflagged token
 
 (defun js2-peek-flagged-token ()
-  "Returns the current token along with any flags set for it."
+  "Return the current token along with any flags set for it."
   (js2-peek-token)
   js2-current-flagged-token)
 
@@ -9681,7 +9681,7 @@
(= (current-indentation) saved-indent
 
 (defun js2-multiline-decl-indentation ()
-  "Returns the declaration indentation column if the current line belongs
+  "Return the declaration indentation column if the current line belongs
 to a multiline declaration statement.  See 
`js2-pretty-multiline-declarations'."
   (let (forward-sexp-function ; use Lisp version
 at-opening-bracket)