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

lisp/progmodes/js.el: Silence byte-compiler warning.

This commit is contained in:
Juanma Barranquero 2013-02-13 01:53:07 +01:00
parent ae18dc22e4
commit d6596b941f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-02-13 Juanma Barranquero <lekktu@gmail.com>
* progmodes/js.el (js--multi-line-declaration-indentation):
Silence byte-compiler warning.
2013-02-12 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-adb.el (tramp-adb-handle-start-file-process): Rewrite.

View File

@ -1791,7 +1791,7 @@ statement spanning multiple lines; otherwise, return nil."
(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)