Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
Libraries
mruby
Commits
4e2a9509
Commit
4e2a9509
authored
Jan 31, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1669 from cremno/copyright-2014
update copyright year
parents
210e7b66
3ee946da
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
MITL
MITL
+1
-1
README.md
README.md
+1
-1
include/mruby.h
include/mruby.h
+1
-1
src/print.c
src/print.c
+2
-2
No files found.
MITL
View file @
4e2a9509
Copyright (c) 201
3
mruby developers
Copyright (c) 201
4
mruby developers
Permission is hereby granted, free of charge, to any person obtaining a
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
copy of this software and associated documentation files (the "Software"),
...
...
README.md
View file @
4e2a9509
...
@@ -73,7 +73,7 @@ documentation with examples under *examples/mrbgems*.
...
@@ -73,7 +73,7 @@ documentation with examples under *examples/mrbgems*.
## License
## License
Copyright (c) 201
3
mruby developers
Copyright (c) 201
4
mruby developers
Permission is hereby granted, free of charge, to any person obtaining a
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
copy of this software and associated documentation files (the "Software"),
...
...
include/mruby.h
View file @
4e2a9509
/*
/*
** mruby - An embeddable Ruby implementation
** mruby - An embeddable Ruby implementation
**
**
** Copyright (c) mruby developers 2010-201
3
** Copyright (c) mruby developers 2010-201
4
**
**
** Permission is hereby granted, free of charge, to any person obtaining
** Permission is hereby granted, free of charge, to any person obtaining
** a copy of this software and associated documentation files (the
** a copy of this software and associated documentation files (the
...
...
src/print.c
View file @
4e2a9509
...
@@ -53,7 +53,7 @@ mrb_print_error(mrb_state *mrb)
...
@@ -53,7 +53,7 @@ mrb_print_error(mrb_state *mrb)
void
void
mrb_show_version
(
mrb_state
*
mrb
)
mrb_show_version
(
mrb_state
*
mrb
)
{
{
static
const
char
version_msg
[]
=
"mruby - Embeddable Ruby Copyright (c) 2010-201
3
mruby developers
\n
"
;
static
const
char
version_msg
[]
=
"mruby - Embeddable Ruby Copyright (c) 2010-201
4
mruby developers
\n
"
;
mrb_value
msg
;
mrb_value
msg
;
msg
=
mrb_str_new
(
mrb
,
version_msg
,
sizeof
(
version_msg
)
-
1
);
msg
=
mrb_str_new
(
mrb
,
version_msg
,
sizeof
(
version_msg
)
-
1
);
...
@@ -63,7 +63,7 @@ mrb_show_version(mrb_state *mrb)
...
@@ -63,7 +63,7 @@ mrb_show_version(mrb_state *mrb)
void
void
mrb_show_copyright
(
mrb_state
*
mrb
)
mrb_show_copyright
(
mrb_state
*
mrb
)
{
{
static
const
char
copyright_msg
[]
=
"mruby - Copyright (c) 2010-201
3
mruby developers
\n
"
;
static
const
char
copyright_msg
[]
=
"mruby - Copyright (c) 2010-201
4
mruby developers
\n
"
;
mrb_value
msg
;
mrb_value
msg
;
msg
=
mrb_str_new
(
mrb
,
copyright_msg
,
sizeof
(
copyright_msg
)
-
1
);
msg
=
mrb_str_new
(
mrb
,
copyright_msg
,
sizeof
(
copyright_msg
)
-
1
);
...
...
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