diff options
author | Samuel Fadel <samuelfadel@gmail.com> | 2014-06-07 14:28:46 -0300 |
---|---|---|
committer | Samuel Fadel <samuelfadel@gmail.com> | 2014-06-07 14:28:46 -0300 |
commit | 062abeb0c13d8c33d82249f38264ec6c98d5b0f7 (patch) | |
tree | 72a448476d6a546fe3f944f2825fbb586b1919ae /src | |
parent | 9cc25bdabe7e519e1645d8ae9234849f5c6780be (diff) |
Added LICENSE file and license comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/T.c | 18 | ||||
-rw-r--r-- | src/config.h | 14 |
2 files changed, 30 insertions, 2 deletions
@@ -2,6 +2,20 @@ * T.c * * T is a lean Terminal emulator. + * + * This file is part of T. + * + * T is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * T is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * T. If not, see <http://www.gnu.org/licenses/>. */ #include <gdk/gdk.h> @@ -57,7 +71,7 @@ terminal_key_press_callback(GtkWidget *widget, GdkEvent *event, gpointer data) case GDK_KEY_C: case GDK_KEY_c: /* - * Before, this was: + * This was: * vte_terminal_copy_clipboard(terminal); * break; * But now we just turn this event into a Control+Insert and delegate it @@ -68,7 +82,7 @@ terminal_key_press_callback(GtkWidget *widget, GdkEvent *event, gpointer data) case GDK_KEY_V: case GDK_KEY_v: /* - * Before, this was: + * This was: * vte_terminal_paste_clipboard(terminal); * break; * But now we just turn this event into a Shift+Insert and delegate it diff --git a/src/config.h b/src/config.h index 39df06d..1bcc7a4 100644 --- a/src/config.h +++ b/src/config.h @@ -2,6 +2,20 @@ * config.h * * Configuration file. Modify these to customize T. + * + * This file is part of T. + * + * T is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * T is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * T. If not, see <http://www.gnu.org/licenses/>. */ /* Minimum width/height, in characters */ |