]> git.wh0rd.org Git - nano.git/commitdiff
Remove trailing spaces on source files as they suck
authorChris Allegretta <chrisa@asty.org>
Sun, 30 Dec 2012 19:20:10 +0000 (19:20 +0000)
committerChris Allegretta <chrisa@asty.org>
Sun, 30 Dec 2012 19:20:10 +0000 (19:20 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4548 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/browser.c
src/files.c
src/global.c
src/move.c
src/nano.c
src/nano.h
src/text.c
src/winio.c

index 123e31378a9c33656c5fa7a949945783aa7b4ee7..2876d9f98d4b77d537486406d7408f59cde9ee5e 100644 (file)
@@ -794,7 +794,7 @@ int filesearch_init(void)
        TRUE,
 #endif
        MWHEREISFILE, backupstring,
-       &meta_key, &func_key, 
+       &meta_key, &func_key,
 #ifndef NANO_TINY
        &search_history,
 #endif
index 430caf1d412b6ce66dd4c4eb6c637df2ba6f6a8c..382339a6a0b3ca7a0e344bb6fdfbcef6b7c07434 100644 (file)
@@ -678,7 +678,7 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw
  * found".
  *
  * Return -2 if we say "New File", -1 if the file isn't opened, and the
- * fd opened otherwise.  The file might still have an error while reading 
+ * fd opened otherwise.  The file might still have an error while reading
  * with a 0 return value.  *f is set to the opened file. */
 int open_file(const char *filename, bool newfie, FILE **f)
 {
@@ -693,7 +693,7 @@ int open_file(const char *filename, bool newfie, FILE **f)
 
     /* Okay, if we can't stat the path due to a component's
        permissions, just try the relative one */
-    if (full_filename == NULL 
+    if (full_filename == NULL
        || (stat(full_filename, &fileinfo) == -1 && stat(filename, &fileinfo2) != -1))
        full_filename = mallocstrcpy(NULL, filename);
 
index b5e868d88a0ef8b95e63faf1f2ef76603bb5bc94..b8355db8a515c85dc514b86285b72e2507fb9955 100644 (file)
@@ -153,7 +153,7 @@ char *syntaxstr = NULL;
 #endif
 
 bool edit_refresh_needed = 0;
-       /* Did a command mangle enough of the buffer refresh that we 
+       /* Did a command mangle enough of the buffer refresh that we
           should repaint the screen */
 
 const shortcut *currshortcut;
@@ -374,7 +374,7 @@ void add_to_sclist(int menu, const char *scstring, void (*func)(void), int toggl
 
 /* Return the given menu's first shortcut sequence, or the default value
   (2nd arg).  Assumes currmenu for the menu to check*/
-int sc_seq_or (void (*func)(void), int defaultval) 
+int sc_seq_or (void (*func)(void), int defaultval)
 {
     const sc *s = first_sc_for(currmenu, func);
 
@@ -385,7 +385,7 @@ int sc_seq_or (void (*func)(void), int defaultval)
 
 }
 
-/* Assign the info to the shortcut struct 
+/* Assign the info to the shortcut struct
    Assumes keystr is already assigned, naturally */
 void assign_keyinfo(sc *s)
 {
@@ -814,7 +814,7 @@ void shortcut_init(bool unjustify)
 
 #ifndef NANO_TINY
 
-    add_to_funcs(do_mark, MMAIN, N_("Mark Text"), 
+    add_to_funcs(do_mark, MMAIN, N_("Mark Text"),
        IFSCHELP(nano_mark_msg), FALSE, VIEW);
 
     add_to_funcs(do_research, (MMAIN|MBROWSER), whereis_next_msg,
@@ -953,7 +953,7 @@ void shortcut_init(bool unjustify)
        IFSCHELP(nano_wordcount_msg), FALSE, VIEW);
 #endif
 
-    add_to_funcs(total_refresh, (MMAIN|MHELP), refresh_msg, 
+    add_to_funcs(total_refresh, (MMAIN|MHELP), refresh_msg,
        IFSCHELP(nano_refresh_msg), FALSE, VIEW);
 
     add_to_funcs(do_suspend_void, MMAIN, suspend_msg,
index 5ec0b6fa5967223339c8fbcb8cb7b6ec80c36be4..782613dad5903e7788fb306edeedf9378e325838 100644 (file)
@@ -79,7 +79,7 @@ void do_page_up(void)
        if (ISSET(SOFTWRAP) && openfile->current) {
            skipped += strlenpt(openfile->current->data) / COLS;
 #ifdef DEBUG
-    fprintf(stderr, "do_page_up: i = %d, skipped = %d based on line %ld len %d\n", i, (unsigned long) skipped, 
+    fprintf(stderr, "do_page_up: i = %d, skipped = %d based on line %ld len %d\n", i, (unsigned long) skipped,
 openfile->current->lineno, strlenpt(openfile->current->data));
 #endif
        }
index c51b644cdd1d7cfc54fbaabd0eae88dad33668a4..90c42491936a0933415602b32c5f7624f3b9ad26 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id$ */ 
+/* $Id$ */
 /**************************************************************************
  *   nano.c                                                               *
  *                                                                        *
@@ -2010,7 +2010,7 @@ void do_output(char *output, size_t output_len, bool allow_cntrls)
 #endif
     }
 
-    /* Well we might also need a full refresh if we've changed the 
+    /* Well we might also need a full refresh if we've changed the
        line length to be a new multiple of COLS */
     if (ISSET(SOFTWRAP) && edit_refresh_needed == FALSE)
        if (strlenpt(openfile->current->data) / COLS  != orig_lenpt / COLS)
@@ -2449,7 +2449,7 @@ int main(int argc, char **argv)
 
 #ifndef DISABLE_WRAPPING
     /* Overwrite an rcfile "set nowrap" or --disable-wrapping-as-root
-       if a --fill option was given on the command line. */ 
+       if a --fill option was given on the command line. */
     if (fill_used)
        UNSET(NO_WRAP);
 #endif
index 6db8447c9b5edd0182aaef5c5437a0a6640bcb49..4600d5d52b0fadf05d2a3cb7f21095b897c5817f 100644 (file)
@@ -470,7 +470,7 @@ typedef struct subnfunc {
 } subnfunc;
 
 
-/* Enumeration to be used in flags table. See FLAGBIT and FLAGOFF 
+/* Enumeration to be used in flags table. See FLAGBIT and FLAGOFF
  * definitions. */
 enum
 {
index ae434ee0e98bd116059602de6ad94920a1f0e71b..d8f80887709904753c92a5017d524fbb559bee34 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id$ */ 
+/* $Id$ */
 /**************************************************************************
  *   text.c                                                               *
  *                                                                        *
@@ -855,7 +855,7 @@ void add_undo(undo_type current_action)
     /* Ugh, if we were called while cutting not-to-end, non-marked and on the same lineno,
        we need to  abort here */
     u = fs->current_undo;
-    if (current_action == CUT && u && u->type == CUT 
+    if (current_action == CUT && u && u->type == CUT
        && !u->mark_set && u->lineno == fs->current->lineno)
        return;
 
index 6d3c0578cea9102f5a3cfa3c1375cf5c3735de01..29a74f2be2ddbcf75e61cd2567a40eee8fb554a8 100644 (file)
@@ -1800,7 +1800,7 @@ const sc *get_shortcut(int menu, int *kbinput, bool
 
 
 /* Try to get a function back from a window.  Just a wrapper so
-   functions to need to create function_key meta_key blah blah 
+   functions to need to create function_key meta_key blah blah
     mmenu - what menu name to look through for valid funcs */
 const subnfunc *getfuncfromkey(WINDOW *win)
 {