branch: elpa/scad-mode
commit fece897e58acd270017c6aead614c90f2a4f78fc
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
Delete trailing whitespace
---
scad-mode.el | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/scad-mode.el b/scad-mode.el
index 9271bed1f8..3339dd5ae6 100644
--- a/scad-mode.el
+++ b/scad-mode.el
@@ -13,12 +13,12 @@
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
-;;
+;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
-;;
+;;
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
@@ -73,10 +73,10 @@
(defcustom scad-functions
'("cos" "acos" "sin" "asin" "tan" "atan" "atan2"
;;func.cc
- "abs" "sign" "rands" "min" "max"
- "round" "ceil" "floor"
+ "abs" "sign" "rands" "min" "max"
+ "round" "ceil" "floor"
"pow" "sqrt" "exp" "log" "ln"
- "str"
+ "str"
"lookup" "version" "version_num" "len" "search"
"dxf_dim" "dxf_cross"
;;dxfdim.cc
"norm" "cross"
;;2014.03
@@ -110,15 +110,15 @@
:group 'scad-font-lock)
(defcustom scad-deprecated
- '("child" "assign" "dxf_linear_extrude" "dxf_rotate_extrude"
+ '("child" "assign" "dxf_linear_extrude" "dxf_rotate_extrude"
"import_stl" "import_off" "import_dxf")
"SCAD deprecated modules and functions."
:type 'list
:group 'scad-font-lock)
(defcustom scad-operators
- '("+" "-" "*" "/" "%"
- "&&" "||" "!"
+ '("+" "-" "*" "/" "%"
+ "&&" "||" "!"
"<" "<=" "==" "!=" ">" ">="
"?" ":" "=")
"SCAD operators."
@@ -135,8 +135,8 @@
(defvar scad-mode-syntax-table
(let ((st (make-syntax-table)))
- ;; support comment style: “// ...”
- ;; support comment style: “/* ... */”
+ ;; support comment style: “// ...”
+ ;; support comment style: “/* ... */”
(modify-syntax-entry ?\/ ". 124b" st)
(modify-syntax-entry ?\n "> b" st)
(modify-syntax-entry ?* ". 23" st)