Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
b8836621
Commit
b8836621
authored
Nov 05, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
luarc: use info instead of error when exiting, don't try to interpret empty lines as commands
parent
83e72e86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
share/luaintf/rc.lua
share/luaintf/rc.lua
+4
-4
No files found.
share/luaintf/rc.lua
View file @
b8836621
...
...
@@ -111,7 +111,7 @@ end
function shutdown(name,client)
client:append("Bye-bye!")
h:broadcast("Shutting down.")
vlc.msg.
err
("Requested shutdown.")
vlc.msg.
info
("Requested shutdown.")
vlc.quit()
end
...
...
@@ -466,17 +466,17 @@ while not vlc.should_die() do
local
input
=
client
:
recv
(
1000
)
if
string.match
(
input
,
"
\n
$"
)
then
client
.
buffer
=
string.gsub
(
client
.
buffer
..
input
,
"
\r
?\n$"
,
""
)
done
=
true
elseif
client
.
buffer
==
""
and
((
client
.
type
==
host
.
client_type
.
stdio
and
input
==
""
)
or
(
client
.
type
==
host
.
client_type
.
net
and
input
==
"
\004
"
))
then
-- Caught a ^D
client
.
buffer
=
"quit"
done
=
true
else
client
.
buffer
=
client
.
buffer
..
input
end
if
done
then
if
client
.
buffer
==
""
then
client
:
send
(
client
.
env
.
prompt
)
else
local
cmd
,
arg
=
split_input
(
client
.
buffer
)
client
.
buffer
=
""
client
:
switch_status
(
host
.
status
.
write
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment