summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/metapost/metauml/util_commons.mp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/metapost/metauml/util_commons.mp')
-rw-r--r--Master/texmf-dist/metapost/metauml/util_commons.mp22
1 files changed, 4 insertions, 18 deletions
diff --git a/Master/texmf-dist/metapost/metauml/util_commons.mp b/Master/texmf-dist/metapost/metauml/util_commons.mp
index 1229da6b025..3ff7f06e833 100644
--- a/Master/texmf-dist/metapost/metauml/util_commons.mp
+++ b/Master/texmf-dist/metapost/metauml/util_commons.mp
@@ -1,19 +1,5 @@
-% MetaUtil, an easier MetaPost life
-% Copyright (C) 2005 Ovidiu Gheorghies
-%
-% This program 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 2
-% of the License, or (at your option) any later version.
-%
-% This program 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 this program; if not, write to the Free Software
-% Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+% Copyright 2005 2015 Ovidiu Gheorghies
+% Licensed under the Apache License, Version 2.0.
if known _util_commons_mp:
expandafter endinput
@@ -74,13 +60,13 @@ vardef lmin(text items)=
current
enddef;
-def max(text a)(text b)=
+def _max(text a)(text b)=
if (a > b): a%
else:b%
fi;
enddef;
-def min(text a)(text b)=
+def _min(text a)(text b)=
if (a < b): a%
else:b%
fi;