emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111756: lisp/progmodes/js.el: Silenc


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111756: lisp/progmodes/js.el: Silence byte-compiler warning.
Date: Wed, 13 Feb 2013 01:53:07 +0100
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111756
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Wed 2013-02-13 01:53:07 +0100
message:
  lisp/progmodes/js.el: Silence byte-compiler warning.
modified:
  lisp/ChangeLog
  lisp/progmodes/js.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-12 14:35:10 +0000
+++ b/lisp/ChangeLog    2013-02-13 00:53:07 +0000
@@ -1,3 +1,8 @@
+2013-02-13  Juanma Barranquero  <address@hidden>
+
+       * progmodes/js.el (js--multi-line-declaration-indentation):
+       Silence byte-compiler warning.
+
 2013-02-12  Michael Albinus  <address@hidden>
 
        * net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.

=== modified file 'lisp/progmodes/js.el'
--- a/lisp/progmodes/js.el      2013-01-18 18:22:18 +0000
+++ b/lisp/progmodes/js.el      2013-02-13 00:53:07 +0000
@@ -1791,7 +1791,7 @@
                                  (not (eq (char-before) ?\;)))
                             (and (>= pos (point-at-bol))
                                  (<= pos (point-at-eol)))))))
-          (condition-case err
+          (condition-case nil
               (backward-sexp)
             (scan-error (setq at-opening-bracket t))))
         (when (looking-at js--declaration-keyword-re)


reply via email to

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