Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d392e8a

Browse files
authoredJul 21, 2022
Fix docs open wrong number of args err (godotengine#116)
1 parent d9e1f7f commit d392e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎gdscript-docs.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
(require 'eww)
3535
(require 'gdscript-customization)
3636

37-
(defun gdscript-docs-open (url &args _)
37+
(defun gdscript-docs-open (url &rest _)
3838
"when `gdscript-docs-use-eww' is true use `eww' else use `browse-url'"
3939
(if gdscript-docs-use-eww
4040
(if (file-exists-p url) (eww-open-file url) (eww-browse-url url t))

0 commit comments

Comments
 (0)
Please sign in to comment.