Browse Source

Clean up some trailing spaces

Scott Lahteine 8 years ago
parent
commit
76c92a1fab
4 changed files with 5 additions and 5 deletions
  1. 1
    1
      Marlin/gcode.h
  2. 2
    2
      Marlin/twibus.h
  3. 1
    1
      Marlin/ubl_motion.cpp
  4. 1
    1
      Marlin/ultralcd_impl_HD44780.h

+ 1
- 1
Marlin/gcode.h View File

38
 #if ENABLED(DEBUG_GCODE_PARSER)
38
 #if ENABLED(DEBUG_GCODE_PARSER)
39
   #if ENABLED(AUTO_BED_LEVELING_UBL)
39
   #if ENABLED(AUTO_BED_LEVELING_UBL)
40
     extern char* hex_address(const void * const w);
40
     extern char* hex_address(const void * const w);
41
-  #else  
41
+  #else
42
     #include "hex_print_routines.h"
42
     #include "hex_print_routines.h"
43
   #endif
43
   #endif
44
   #include "serial.h"
44
   #include "serial.h"

+ 2
- 2
Marlin/twibus.h View File

48
  * for the host to interpret.
48
  * for the host to interpret.
49
  *
49
  *
50
  *  For more information see
50
  *  For more information see
51
- *    - http://marlinfw.org/docs/gcode/M260.html 
52
- *    - http://marlinfw.org/docs/gcode/M261.html 
51
+ *    - http://marlinfw.org/docs/gcode/M260.html
52
+ *    - http://marlinfw.org/docs/gcode/M261.html
53
  *
53
  *
54
  */
54
  */
55
 class TWIBus {
55
 class TWIBus {

+ 1
- 1
Marlin/ubl_motion.cpp View File

31
   #include <math.h>
31
   #include <math.h>
32
 
32
 
33
   extern float destination[XYZE];
33
   extern float destination[XYZE];
34
-  
34
+
35
   #if AVR_AT90USB1286_FAMILY  // Teensyduino & Printrboard IDE extensions have compile errors without this
35
   #if AVR_AT90USB1286_FAMILY  // Teensyduino & Printrboard IDE extensions have compile errors without this
36
     inline void set_current_to_destination() { COPY(current_position, destination); }
36
     inline void set_current_to_destination() { COPY(current_position, destination); }
37
   #else
37
   #else

+ 1
- 1
Marlin/ultralcd_impl_HD44780.h View File

1085
 
1085
 
1086
 #if ENABLED(AUTO_BED_LEVELING_UBL)
1086
 #if ENABLED(AUTO_BED_LEVELING_UBL)
1087
 
1087
 
1088
-  /* 
1088
+  /**
1089
    * These are just basic data for the 20x4 LCD work that
1089
    * These are just basic data for the 20x4 LCD work that
1090
    * is coming up very soon.
1090
    * is coming up very soon.
1091
    * Soon this will morph into a map code.
1091
    * Soon this will morph into a map code.

Loading…
Cancel
Save