diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-19 18:03:37 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-19 18:03:37 -0500 |
commit | 22977b5c51f5c0ffe318fc3cf8a88b7b14983b15 (patch) | |
tree | aea43a8234125fb5b87113dfb10600fdbcf32413 /lisp/xwidget.el | |
parent | 1e5eb04c83420bece575cab89b028cf828aaa00e (diff) | |
download | emacs-22977b5c51f5c0ffe318fc3cf8a88b7b14983b15.tar.gz emacs-22977b5c51f5c0ffe318fc3cf8a88b7b14983b15.tar.bz2 emacs-22977b5c51f5c0ffe318fc3cf8a88b7b14983b15.zip |
* lisp/xwidget.el (xwidget-webkit-scroll-behaviour): Fix custom spec.
Diffstat (limited to 'lisp/xwidget.el')
-rw-r--r-- | lisp/xwidget.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/xwidget.el b/lisp/xwidget.el index 2472c8db93f..17fcf3dae91 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el @@ -36,7 +36,9 @@ (defcustom xwidget-webkit-scroll-behaviour 'native "Scroll behaviour of the webkit instance. 'native or 'image." - :group 'xwidgets) + :version "25.1" + :group 'frames ; TODO add xwidgets group if more options are added + :type '(choice (const native) (const image))) (defun xwidget-insert (pos type title width height &optional args) "Insert an xwidget at POS. |