Damien Merenne 5 年 前
コミット
4d050d8c36
3 ファイル変更4 行追加10 行削除
  1. 2 1
      Cask
  2. 1 1
      xwidget-plus-common.el
  3. 1 8
      xwidget-plus.el

+ 2 - 1
Cask

@@ -11,4 +11,5 @@
  (depends-on "ert-async")
  (depends-on "with-simulated-input")
  (depends-on "ivy")
- (depends-on "helm"))
+ (depends-on "helm")
+ (depends-on "package-lint"))

+ 1 - 1
xwidget-plus-common.el

@@ -1,4 +1,4 @@
-;;; xwidget-plus-common.el -- Helper functions for xwidget-plus.
+;;; xwidget-plus-common.el -- Helper functions for xwidget-plus. -*- lexical-binding: t; -*-
 
 ;; Copyright (C) 2020 Damien Merenne <dam@cosinux.org>
 

+ 1 - 8
xwidget-plus.el

@@ -1,4 +1,4 @@
-;;; xwidget-plus.el --- Improve xwidget usability
+;;; xwidget-plus.el --- Improve xwidget usability -*- lexical-binding: t; -*-
 
 ;; Author: Damien Merenne
 ;; URL: https://github.com/canatella/xwidget-plus
@@ -42,7 +42,6 @@
 (require 'xwidget-plus-common)
 (require 'xwidget-plus-follow-link)
 
-;; Bring the window to front when summoning browse
 ;;;###autoload
 (defun xwidget-plus-browse-url (url &optional new-session)
   "Ask xwidget-webkit to browse URL.
@@ -61,11 +60,5 @@ Interactively, URL defaults to the string looking like a url around point."
       (progn (xwidget-webkit-goto-url url)
              (switch-to-buffer-other-window (xwidget-buffer (xwidget-webkit-current-session)))))))
 
-;; Local Variables:
-;; eval: (mmm-mode)
-;; eval: (mmm-add-classes '((elisp-js :submode js-mode :face mmm-code-submode-face :delimiter-mode nil :front "--js \"" :back "\" js--")))
-;; mmm-classes: elisp-js
-;; End:
-
 (provide 'xwidget-plus)
 ;;; xwidget-plus.el ends here