From 2e6ff7df917fc8f261268e752f84986ed3c683c5 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 22 Feb 2026 14:17:32 +0100 Subject: m fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/Test.java | 4 ++-- src/argparser.bash | 2 +- src/argparser.c | 2 +- src/argparser.h | 2 +- src/argparser.py | 4 ++-- src/argparser/ArgParser.java | 4 ++-- src/libargparser/argparser.c | 2 +- src/libargparser/argparser.h | 2 +- src/test.bash | 4 ++-- src/test.c | 4 ++-- src/test.py | 4 ++-- 11 files changed, 17 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/Test.java b/src/Test.java index c9c04a2..fe4da66 100644 --- a/src/Test.java +++ b/src/Test.java @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -26,7 +26,7 @@ public class Test System.out.println("Parent: " + ArgParser.parentName()); ArgParser parser = new ArgParser.Abbreviations("A test for argparser", "test [options] [files]", - "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" + + "Copyright © 2013 Mattias Andrée (m@maandree.se)\n" + "\n" + "This library is free software: you can redistribute it and/or modify\n" + "it under the terms of the GNU Affero General Public License as published by\n" + diff --git a/src/argparser.bash b/src/argparser.bash index 99711c3..5afa3b6 100644 --- a/src/argparser.bash +++ b/src/argparser.bash @@ -2,7 +2,7 @@ ## # argparser – command line argument parser library # -# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +# Copyright © 2013 Mattias Andrée (m@maandree.se) # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.c b/src/argparser.c index ed1a64d..1d21fad 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.h b/src/argparser.h index 9503737..6c62a65 100644 --- a/src/argparser.h +++ b/src/argparser.h @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/argparser.py b/src/argparser.py index f9160da..44a82bb 100644 --- a/src/argparser.py +++ b/src/argparser.py @@ -3,7 +3,7 @@ ''' argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -26,7 +26,7 @@ class ArgParser(): ''' Simple argument parser - @author Mattias Andrée, maandree@member.fsf.org + @author Mattias Andrée, m@maandree.se ''' diff --git a/src/argparser/ArgParser.java b/src/argparser/ArgParser.java index b2b56a1..088c4cb 100644 --- a/src/argparser/ArgParser.java +++ b/src/argparser/ArgParser.java @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -25,7 +25,7 @@ import java.io.*; /** * Simple argument parser * - * @author Mattias Andrée, maandree@member.fsf.org + * @author Mattias Andrée, m@maandree.se */ public class ArgParser { diff --git a/src/libargparser/argparser.c b/src/libargparser/argparser.c index ba3d606..2004420 100644 --- a/src/libargparser/argparser.c +++ b/src/libargparser/argparser.c @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/libargparser/argparser.h b/src/libargparser/argparser.h index 51feace..0691ffe 100644 --- a/src/libargparser/argparser.h +++ b/src/libargparser/argparser.h @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013, 2014 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013, 2014 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by diff --git a/src/test.bash b/src/test.bash index fc44eec..94c8eba 100755 --- a/src/test.bash +++ b/src/test.bash @@ -2,7 +2,7 @@ ## # argparser – command line argument parser library # -# Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +# Copyright © 2013 Mattias Andrée (m@maandree.se) # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -25,7 +25,7 @@ echo "Parent: $(args_parent_name)" long=$(cat <<. argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by diff --git a/src/test.c b/src/test.c index 8fdbe8b..737ba60 100644 --- a/src/test.c +++ b/src/test.c @@ -1,7 +1,7 @@ /** * argparser – command line argument parser library * - * Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2013 Mattias Andrée (m@maandree.se) * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -28,7 +28,7 @@ int main(int argc, char** argv) free(pname); args_init("A test for argparser", "test [options] [files]", - "Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n" + "Copyright © 2013 Mattias Andrée (m@maandree.se)\n" "\n" "This library is free software: you can redistribute it and/or modify\n" "it under the terms of the GNU Affero General Public License as published by\n" diff --git a/src/test.py b/src/test.py index 0cfd242..998a10a 100755 --- a/src/test.py +++ b/src/test.py @@ -3,7 +3,7 @@ ''' argparser – command line argument parser library -Copyright © 2013 Mattias Andrée (maandree@member.fsf.org) +Copyright © 2013 Mattias Andrée (m@maandree.se) This library is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by @@ -24,7 +24,7 @@ from argparser import * print('Parent: ' + ArgParser.parent_name()) parser = ArgParser('A test for argparser', 'test [options] [files]', - 'Copyright © 2013 Mattias Andrée (maandree@member.fsf.org)\n' + 'Copyright © 2013 Mattias Andrée (m@maandree.se)\n' '\n' 'This library is free software: you can redistribute it and/or modify\n' 'it under the terms of the GNU Affero General Public License as published by\n' -- cgit v1.2.3-70-g09d2