From 61096819949d9c7f6e7032ec949daba35cf57226 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 18 Apr 2005 17:40:32 -0700 Subject: [PATCH] Add quotes around the subject line that we print out as being applied. My brain just flipped when it tried to read the "Applying" as part of the explanation of the patch, and the sentence didn't make any sense. The quotes make it clear what's going on. --- applypatch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applypatch b/applypatch index 2791d9139..9799cf98d 100755 --- a/applypatch +++ b/applypatch @@ -19,7 +19,7 @@ export AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' .dotest/info)" export SUBJECT="$(sed -n '/^Subject/ s/Subject: //p' .dotest/info)" echo -echo Applying $SUBJECT +echo Applying "'$SUBJECT'" echo (echo "[PATCH] $SUBJECT" ; echo ; cat $MSGFILE ) > .dotest/final-commit -- 2.45.2