From 18deedbcb0fd611038c0c4db9b5c748941f75c29 Mon Sep 17 00:00:00 2001 From: hut Date: Fri, 12 Jun 2009 19:20:08 +0200 Subject: small changes --- code/scheduler.rb | 4 ++-- ranger.rb | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/code/scheduler.rb b/code/scheduler.rb index 2a0f0a21..e35f28d6 100644 --- a/code/scheduler.rb +++ b/code/scheduler.rb @@ -51,12 +51,12 @@ module Scheduler while dir = @scheduled.shift dir.refresh(true) dir.resize - force_update end + force_update end def force_update - Process.kill( UPDATE_SIGNAL, PID ) + Process.kill( UPDATE_SIGNAL, Process.pid ) end end diff --git a/ranger.rb b/ranger.rb index 42a7f88e..472f02ae 100755 --- a/ranger.rb +++ b/ranger.rb @@ -6,8 +6,6 @@ $: << MYDIR = File.dirname(Pathname.new(__FILE__).realpath) EVIL = false -PID = Process.pid - if ARGV.size > 0 case ARGV.first when '-k' -- cgit 1.4.1-2-gfad0 mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
summary refs log tree commit diff stats
path: root/code/runcontext.rb
blob: d3a0b9d1470a320349e3a8da98bc06d99caf295d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179