summaryrefslogtreecommitdiff
path: root/ruby.c
diff options
context:
space:
mode:
Diffstat (limited to 'ruby.c')
-rw-r--r--ruby.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ruby.c b/ruby.c
index 2c220500dc..72866e1415 100644
--- a/ruby.c
+++ b/ruby.c
@@ -477,9 +477,7 @@ load_file(fname, script)
line = io_gets(f);
line_start++;
- if (RSTRING(line)->len > 2
- && RSTRING(line)->ptr[0] == '!') {
-
+ if (RSTRING(line)->len > 2 && RSTRING(line)->ptr[0] == '!') {
if ((p = strstr(RSTRING(line)->ptr, "ruby")) == 0) {
/* not ruby script, kick the program */
char **argv;