emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/scad-mode fece897e58 04/47: Delete trailing whitespace


From: ELPA Syncer
Subject: [nongnu] elpa/scad-mode fece897e58 04/47: Delete trailing whitespace
Date: Sat, 12 Nov 2022 13:59:33 -0500 (EST)

branch: elpa/scad-mode
commit fece897e58acd270017c6aead614c90f2a4f78fc
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]