diff options
author | Marius Kintel <marius@kintel.net> | 2013-06-01 20:06:19 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-06-01 20:06:19 (GMT) |
commit | 7d932eaccaf7a17e084fe0d073e89f6484dc8cd5 (patch) | |
tree | 333929355205eac0946f1c26f9b2e8d34cb732ca /contrib | |
parent | e4197c1b587861c56b6a74837e962029cb765a05 (diff) |
Added some missing functions and modules
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/scad-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/scad-mode.el b/contrib/scad-mode.el index 5961b08..68a47e6 100644 --- a/contrib/scad-mode.el +++ b/contrib/scad-mode.el @@ -66,7 +66,7 @@ "round" "ceil" "floor" "pow" "sqrt" "exp" "log" "ln" "str" - "lookup" "version" "version_num" + "lookup" "version" "version_num" "len" "search" "dxf_dim" "dxf_cross" ;;dxfdim.cc ) "SCAD functions." @@ -74,7 +74,7 @@ :group 'scad-font-lock) (defcustom scad-modules - '("child" "echo" "assign" "for" "intersection_for" "if" ;;control.cc + '("child" "echo" "assign" "for" "intersection_for" "if" "else" ;;control.cc "cube" "sphere" "cylinder" "polyhedron" "square" "circle" "polygon" ;;primitives.cc "scale" "rotate" "translate" "mirror" "multmatrix" ;;transform.cc "union" "difference" "intersection" ;;csgops.cc @@ -86,7 +86,7 @@ "import_stl" "import_off" "import_dxf" "import" ;;import.cc "group" ;;builtin.cc "projection" ;;projection.cc - "minkowski" "glide" "subdiv" "hull" ;;cgaladv.cc + "minkowski" "glide" "subdiv" "hull" "resize" ;;cgaladv.cc ) "SCAD modules." :type 'list |