# HG changeset patch # User Radoslaw "AstralStorm" Szkodzinski # Date 1121040056 28800 # Node ID 0100a43788cad286ab4b0cad64111bd975765ac2 # Parent 40fd5722c66970942eaf019cb4ebb9a5ce92c034 hgeditor: Remove EMAIL default for HGUSER, comment editor selection # HG changeset patch # User Radoslaw "AstralStorm" Szkodzinski # Node ID a4c688c8273e392b1bf33cfc736e00ec752a415e # Parent be12687d4bf0ce16c4207bef85c188de66efbf53 hgeditor: Remove EMAIL default for HGUSER, comment editor selection HGUSER is already set to EMAIL by Python code if needed diff -r 40fd5722c669 -r 0100a43788ca hgeditor --- a/hgeditor Sun Jul 10 16:00:49 2005 -0800 +++ b/hgeditor Sun Jul 10 16:00:56 2005 -0800 @@ -9,6 +9,8 @@ exit $1 } +# If you want to pass your favourite editor some other parameters +# only for Mercurial, modify this: case "${EDITOR:=vi}" in emacs) EDITOR="$EDITOR -nw" @@ -44,7 +46,7 @@ { head -n 1 "$T1" echo - grep -v "^HG:" "$T1" | gpg -t -a -u "${HGUSER:-$EMAIL}" --clearsign + grep -v "^HG:" "$T1" | gpg -t -a -u "${HGUSER}" --clearsign } > "$T2" && mv "$T2" "$1" cleanup_exit $? fi