emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] 19/46: Better docstrings


From: Dmitry Gutov
Subject: [elpa] 19/46: Better docstrings
Date: Sat, 15 Nov 2014 20:58:02 +0000

dgutov pushed a commit to branch master
in repository elpa.

commit 5a366119256fdeba58743625053b7f6a4809ac1a
Author: Dmitry Gutov <address@hidden>
Date:   Wed Jul 9 19:45:34 2014 +0300

    Better docstrings
---
 js2-mode.el |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/js2-mode.el b/js2-mode.el
index 649d558..6e719d5 100644
--- a/js2-mode.el
+++ b/js2-mode.el
@@ -5162,8 +5162,8 @@ Returns nil and consumes nothing if TEST is not the next 
character."
     (js2-unget-char)))
 
 (defun js2-identifier-start-p (c)
-  "Is C a valid start to an ES5 Identifier
-   http://es5.github.io/#x7.6";
+  "Is C a valid start to an ES5 Identifier?
+See http://es5.github.io/#x7.6";
   (or
    (memq c '(?$ ?_))
    (memq (get-char-code-property c 'general-category)
@@ -5171,8 +5171,8 @@ Returns nil and consumes nothing if TEST is not the next 
character."
          '(Lu Ll Lt Lm Lo Nl))))
 
 (defun js2-identifier-part-p (c)
-  "Is C a valid part of an ES5 Identifier
-   http://es5.github.io/#x7.6";
+  "Is C a valid part of an ES5 Identifier?
+See http://es5.github.io/#x7.6";
   (or
    (memq c '(?$ ?_ ?\u200c  ?\u200d))
    (memq (get-char-code-property c 'general-category)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]