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:
parent
ae18dc22e4
commit
d6596b941f
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user