From c4405b529fc73795715981b52fc0c3aaa42438e2 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Thu, 7 Aug 2008 11:30:01 -0700
Subject: [PATCH] Makefile: avoid bare quotes, since the emacs
 syntax-highlighter gets confused by them

---
 Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index d6a038fd..19366c44 100644
--- a/Makefile
+++ b/Makefile
@@ -61,10 +61,11 @@ endif
 
 PATH := $(subst ",,${PATH})
 PATH := $(subst ',,$(PATH))
+# ' "  # emacs syntax-highlighter gets confused by the bare quotes above
 
 TRIALCMD = $(shell PATH="$(PATH):${PWD}/support/bin" $(PP) $(PYTHON) misc/find_trial.py)
 ifeq ($(TRIALCMD),)
-$(error Couldn't find trial.  It comes with twisted.)
+$(error Could not find trial.  It comes with twisted.)
 endif
 TRIAL=PATH="$(PATH):${PWD}/support/bin" PYTHONUNBUFFERED=1 $(TRIALCMD) --rterrors $(REACTOROPT)
 
-- 
2.45.2