branch: elpa/scad-mode
commit 1a2e992a5b152c664c9e5060e1cb3ead32edb324
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Fix custom types
---
scad-mode.el | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/scad-mode.el b/scad-mode.el
index 440593dec2..8f0ef0934a 100644
--- a/scad-mode.el
+++ b/scad-mode.el
@@ -60,7 +60,7 @@
(defcustom scad-keywords
'("return" "true" "false")
"SCAD keywords."
- :type 'list)
+ :type '(repeat string))
(defcustom scad-functions
'("cos" "acos" "sin" "asin" "tan" "atan" "atan2"
;;func.cc
@@ -76,7 +76,7 @@
"is_undef" "is_list" "is_num" "is_bool" "is_string"
;;2019.05 type test
)
"SCAD functions."
- :type 'list)
+ :type '(repeat string))
(defcustom scad-modules
'("children" "echo" "for" "intersection_for" "if" "else"
;;control.cc
@@ -96,13 +96,13 @@
"let" "offset" "text"
;;2015.03
)
"SCAD modules."
- :type 'list)
+ :type '(repeat string))
(defcustom scad-deprecated
'("child" "assign" "dxf_linear_extrude" "dxf_rotate_extrude"
"import_stl" "import_off" "import_dxf")
"SCAD deprecated modules and functions."
- :type 'list)
+ :type '(repeat string))
(defcustom scad-operators
'("+" "-" "*" "/" "%"
@@ -110,7 +110,7 @@
"<" "<=" "==" "!=" ">" ">="
"?" ":" "=")
"SCAD operators."
- :type 'list)
+ :type '(repeat string))
(defcustom scad-preview-camera '(0 0 0 50 0 20 500)
"Default parameters for the Gimbal camera."