]> git.madduck.net Git - etc/mutt.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fix regexp in batch subject editor and do not print newline
authormartin f. krafft <madduck@madduck.net>
Sun, 31 Aug 2008 13:10:54 +0000 (14:10 +0100)
committermartin f. krafft <madduck@madduck.net>
Sun, 31 Aug 2008 13:10:54 +0000 (14:10 +0100)
Signed-off-by: martin f. krafft <madduck@madduck.net>
.mutt/batch-subject-editor

index ad12beff3ceeaaf79426de86ead4136bbdbe0cb5..8cfbf5dd55a25fcfc0ac6ddc1a3bd96c16e191ff 100755 (executable)
@@ -17,9 +17,9 @@ if [ -z "${subj:-}" ]; then
   exit 1
 fi
 
-RE_REPLY='(re([[(]?[[:digit:]]+[)]]?)?|aw|antwort):[[:space:]]*'
-RE_SUBJ_PREFIX="^Subject:[[:space:]]*(${RE_REPLY})?"
+RE_REPLY='((re|aw|antwort)([[(]?[[:digit:]]+[)]]?)?):[[:space:]]*'
+RE_SUBJ_PREFIX="^Subject:[[:space:]]*(${RE_REPLY})*"
 RE_SUBJ='.*'
 EDITOR="sed -i -re \"s,(${RE_SUBJ_PREFIX})${RE_SUBJ},\\\1$subj,i\""
 
-printf "set editor='${EDITOR} %s'\n"
+printf "set editor='${EDITOR} %s'"