about summary refs log tree commit diff stats
path: root/src/ui/window_list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window_list.c')
-rw-r--r--src/ui/window_list.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ui/window_list.c b/src/ui/window_list.c
index 0a96b461..a5546a38 100644
--- a/src/ui/window_list.c
+++ b/src/ui/window_list.c
@@ -5,20 +5,20 @@
  * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
  * Copyright (C) 2019 - 2023 Michael Vetter <jubalh@iodoru.org>
  *
- * This file is part of Profanity.
+ * This file is part of Profani-tty.
  *
- * Profanity is free software: you can redistribute it and/or modify
+ * Profani-tty 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.
  *
- * Profanity is distributed in the hope that it will be useful,
+ * Profani-tty 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 Profanity.  If not, see <https://www.gnu.org/licenses/>.
+ * along with Profani-tty.  If not, see <https://www.gnu.org/licenses/>.
  *
  * In addition, as a special exception, the copyright holders give permission to
  * link the code of portions of this program with the OpenSSL library under
@@ -1331,7 +1331,7 @@ wins_add_urls_ac(const ProfWin* const win, const ProfMessage* const message, con
         } else {
             autocomplete_add_unsorted(win->urls_ac, word, TRUE);
         }
-        // for people who run profanity a long time, we don't want to waste a lot of memory
+        // for people who run profani-tty a long time, we don't want to waste a lot of memory
         autocomplete_remove_older_than_max_reverse(win->urls_ac, 20);
 
         g_free(word);
@@ -1351,7 +1351,7 @@ wins_add_quotes_ac(const ProfWin* const win, const char* const message, const gb
         autocomplete_add_unsorted(win->quotes_ac, message, TRUE);
     }
 
-    // for people who run profanity a long time, we don't want to waste a lot of memory
+    // for people who run profani-tty a long time, we don't want to waste a lot of memory
     autocomplete_remove_older_than_max_reverse(win->quotes_ac, 20);
 }