From: Jan-Benedict G. <jb...@us...> - 2005-03-14 08:54:47
|
Update of /cvsroot/linux-vax/usr/visualize_asm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10511 Modified Files: graphic.h graphic_dot.c parse_backend.c regexp_helper.c Log Message: - Remove trailing whitespace. Easily spotted by: highlight RedundantWhitespace ctermbg=red guibg=red match RedundantWhitespace /\s\+$\| \+\ze\t/ ...in your ~/.vimrc Index: regexp_helper.c =================================================================== RCS file: /cvsroot/linux-vax/usr/visualize_asm/regexp_helper.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- regexp_helper.c 11 Mar 2005 21:29:34 -0000 1.1 +++ regexp_helper.c 14 Mar 2005 08:54:37 -0000 1.2 @@ -42,7 +42,6 @@ largest_match = catch[i].match_index; } } va_end (args); - } /* Index: graphic_dot.c =================================================================== RCS file: /cvsroot/linux-vax/usr/visualize_asm/graphic_dot.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- graphic_dot.c 11 Mar 2005 21:29:34 -0000 1.1 +++ graphic_dot.c 14 Mar 2005 08:54:37 -0000 1.2 @@ -18,7 +18,7 @@ size_t len; len = vsnprintf (buf, 0, format, args) + 5; - real_buf = malloc (len); + real_buf = malloc (len); if (!real_buf) return NULL; Index: parse_backend.c =================================================================== RCS file: /cvsroot/linux-vax/usr/visualize_asm/parse_backend.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- parse_backend.c 11 Mar 2005 21:29:34 -0000 1.1 +++ parse_backend.c 14 Mar 2005 08:54:37 -0000 1.2 @@ -112,7 +112,7 @@ { .name = "jump", &parse_jump, }, { .name = "ret", &parse_ret, }, { .name = "ignore", &parse_ignore, }, - { .name = "section", &parse_section, }, + { .name = "section", &parse_section, }, { .name = "function", &parse_function, }, { .name = "code", &parse_code, }, }; Index: graphic.h =================================================================== RCS file: /cvsroot/linux-vax/usr/visualize_asm/graphic.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- graphic.h 11 Mar 2005 21:29:34 -0000 1.1 +++ graphic.h 14 Mar 2005 08:54:37 -0000 1.2 @@ -26,6 +26,5 @@ extern int graphic_push_ret (unsigned char *code, uint64_t address); extern unsigned char *get_section_name (void); - -#endif /* GRAPHICS_H */ +#endif /* GRAPHICS_H */ |