>From 844896af3fefe18c0e4dd32bdf6be2c9d8a776f8 Mon Sep 17 00:00:00 2001 From: Akira Yokosawa <akiyks@xxxxxxxxx> Date: Thu, 2 Nov 2017 22:42:14 +0900 Subject: [PATCH 1/3] hyphen2endash.sh: Add patterns for 'nn-mm days' and 'nn-mm sheets' Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> --- utilities/hyphen2endash.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/utilities/hyphen2endash.sh b/utilities/hyphen2endash.sh index 29e3896..1586804 100644 --- a/utilities/hyphen2endash.sh +++ b/utilities/hyphen2endash.sh @@ -23,6 +23,10 @@ # nn-mm~microsecond -> nn--mm~microsecond # nn-mm~millisecond -> nn--mm~millisecond # nn-mm~\emp -> nn--mm~\emp +# nn-mm days -> nn--mm~days +# nn-mm~days -> nn--mm~days +# nn-mm sheets -> nn--mm~sheets +# nn-mm~sheets -> nn--mm~sheets # # 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 @@ -54,6 +58,8 @@ cat $1 | -e 's/\([0-9]\+\)-\([0-9]\+\)~microsecond/\1--\2~microsecond/g' \ -e 's/\([0-9]\+\)-\([0-9]\+\)~millisecond/\1--\2~millisecond/g' \ -e 's/\([0-9]\+\)-\([0-9]\+\)~\\emp/\1--\2~\\emp/g' \ + -e 's/\([0-9]\+\)-\([0-9]\+\)[ ~]days/\1--\2~days/g' \ + -e 's/\([0-9]\+\)-\([0-9]\+\)[ ~]sheets/\1--\2~sheets/g' \ -e 's/\/\* Lines~\([0-9]\+\)--\([0-9]\+\) \*\//\/\* Lines \1-\2 \*\//g' # Last pattern is to preserve "Lines n-m" in comments within code snippet -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe perfbook" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html