From 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Wed, 14 Nov 2007 22:04:21 +0000 Subject: ** Remove trailing whitespace from source code. 2007-11-14 Matthew Barnes ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537 --- shell/e-shell-utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'shell/e-shell-utils.c') diff --git a/shell/e-shell-utils.c b/shell/e-shell-utils.c index c8846dfff8..0343c4eb25 100644 --- a/shell/e-shell-utils.c +++ b/shell/e-shell-utils.c @@ -118,14 +118,14 @@ e_shell_folder_name_is_valid (const char *name, *reason_return = _("No folder name specified."); return FALSE; } - + /* GtkEntry is broken - if you hit KP_ENTER you get a \r inserted... */ if (strchr (name, '\r')) { if (reason_return != NULL) *reason_return = _("Folder name cannot contain the Return character."); return FALSE; } - + if (strchr (name, E_PATH_SEPARATOR) != NULL) { if (reason_return != NULL) *reason_return = _("Folder name cannot contain the character \"/\"."); @@ -145,7 +145,7 @@ e_shell_folder_name_is_valid (const char *name, } *reason_return = NULL; - + return TRUE; } -- cgit