Skip to content

Instantly share code, notes, and snippets.

@PandaWhoCodes
Last active April 26, 2026 00:11
Show Gist options
  • Select an option

  • Save PandaWhoCodes/1362be58b7a60c66a9402011b7f1d629 to your computer and use it in GitHub Desktop.

Select an option

Save PandaWhoCodes/1362be58b7a60c66a9402011b7f1d629 to your computer and use it in GitHub Desktop.
The Three Walls — A Sermon on Matthew 5:33–48 (revised)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Three Walls — A Sermon on Matthew 5:33–48</title>
<style>
:root {
--bg: #fbfaf7;
--text: #1f1d1a;
--muted: #6b6862;
--rule: #e5e1d8;
--accent: #8b4513;
--accent-soft: #f4eee2;
--highlight: #fff8e7;
--focus-bg: #f7f1e3;
--focus-border: #b8860b;
--serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
--sans: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--serif);
font-size: 18px;
line-height: 1.72;
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
font-feature-settings: "kern", "liga", "onum";
}
.wrap {
display: grid;
grid-template-columns: 240px 1fr;
max-width: 1140px;
margin: 0 auto;
gap: 60px;
padding: 60px 40px;
}
nav.toc {
position: sticky;
top: 40px;
align-self: start;
font-family: var(--sans);
font-size: 13px;
max-height: calc(100vh - 80px);
overflow-y: auto;
}
nav.toc h4 {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--muted);
margin: 0 0 14px;
}
nav.toc ol {
list-style: none;
padding: 0;
margin: 0;
counter-reset: toc;
}
nav.toc li {
counter-increment: toc;
margin: 6px 0;
padding-left: 24px;
position: relative;
line-height: 1.45;
}
nav.toc li::before {
content: counter(toc, upper-roman) ".";
position: absolute;
left: 0;
color: var(--muted);
font-variant: small-caps;
}
nav.toc a {
color: var(--text);
text-decoration: none;
border-bottom: 1px solid transparent;
}
nav.toc a:hover { border-bottom-color: var(--accent); color: var(--accent); }
main { max-width: 720px; min-width: 0; }
header.title {
padding-bottom: 48px;
margin-bottom: 40px;
border-bottom: 1px solid var(--rule);
}
header.title .eyebrow {
font-family: var(--sans);
font-size: 12px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
font-weight: 600;
margin-bottom: 18px;
}
header.title h1 {
font-size: 48px;
line-height: 1.1;
margin: 0 0 14px;
font-weight: 600;
letter-spacing: -0.01em;
}
header.title .sub {
font-style: italic;
color: var(--muted);
font-size: 20px;
margin: 0;
}
header.title .ref {
font-family: var(--sans);
font-size: 13px;
letter-spacing: 0.08em;
color: var(--muted);
margin-top: 22px;
text-transform: uppercase;
}
section { margin-bottom: 72px; }
h2 {
font-size: 30px;
line-height: 1.2;
font-weight: 600;
margin: 0 0 8px;
letter-spacing: -0.005em;
color: var(--accent);
}
h2 .num {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.2em;
color: var(--muted);
display: block;
margin-bottom: 8px;
text-transform: uppercase;
font-weight: 600;
}
h3 {
font-size: 22px;
margin: 36px 0 12px;
font-weight: 600;
letter-spacing: -0.005em;
}
h4 {
font-size: 14px;
font-family: var(--sans);
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--muted);
margin: 32px 0 10px;
font-weight: 600;
}
p { margin: 0 0 18px; }
em { font-style: italic; color: #34302a; }
strong { font-weight: 600; }
blockquote.scripture {
margin: 28px 0;
padding: 18px 24px;
background: var(--accent-soft);
border-left: 3px solid var(--accent);
font-style: italic;
font-size: 17.5px;
line-height: 1.7;
}
blockquote.scripture .ref {
display: block;
font-style: normal;
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 10px;
font-weight: 600;
}
blockquote.scripture .verse-num {
font-family: var(--sans);
font-size: 11px;
color: var(--accent);
vertical-align: super;
margin-right: 4px;
font-style: normal;
font-weight: 600;
}
blockquote.pull {
font-size: 22px;
line-height: 1.5;
font-style: italic;
color: var(--accent);
margin: 36px 0;
padding: 0 0 0 28px;
border-left: 3px solid var(--accent);
}
.breath {
background: var(--highlight);
padding: 22px 26px;
margin: 32px 0;
border-radius: 2px;
font-style: italic;
color: #4a3a1a;
font-size: 17px;
line-height: 1.65;
}
.breath .label {
display: block;
font-style: normal;
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--focus-border);
margin-bottom: 8px;
font-weight: 600;
}
.ask-the-room {
border: 1px solid var(--accent);
background: #fff;
padding: 18px 22px;
margin: 28px 0;
font-size: 16.5px;
}
.ask-the-room .label {
display: block;
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--accent);
font-weight: 600;
margin-bottom: 10px;
}
.ask-the-room p { margin: 0 0 8px; font-style: italic; }
.ask-the-room p:last-child { margin-bottom: 0; }
.anticipated {
background: var(--focus-bg);
border-left: 3px solid var(--focus-border);
padding: 16px 22px;
margin: 28px 0;
font-size: 16.5px;
}
.anticipated .q {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--focus-border);
font-weight: 600;
margin-bottom: 8px;
display: block;
}
.anticipated .question {
font-style: italic;
margin: 0 0 12px;
font-size: 17px;
}
.anticipated p { margin: 0 0 10px; }
.anticipated p:last-child { margin-bottom: 0; }
.application {
border-top: 2px solid var(--accent);
border-bottom: 2px solid var(--accent);
padding: 24px 0;
margin: 36px 0;
}
.application h4 {
margin-top: 0;
color: var(--accent);
}
.gk { font-family: Georgia, serif; font-style: italic; }
.gk-strong { color: var(--accent); font-style: italic; }
.three-walls-table {
width: 100%;
border-collapse: collapse;
margin: 28px 0;
font-size: 16px;
}
.three-walls-table td {
padding: 14px 16px;
border-bottom: 1px solid var(--rule);
vertical-align: top;
}
.three-walls-table tr:first-child td { border-top: 1px solid var(--rule); }
.three-walls-table .roman {
font-family: var(--sans);
color: var(--accent);
font-weight: 600;
font-size: 13px;
width: 40px;
letter-spacing: 0.1em;
}
.three-walls-table .name { font-weight: 600; width: 32%; }
.three-walls-table .desc { color: var(--muted); font-style: italic; }
.three-walls-table .ref-col {
font-family: var(--sans);
font-size: 12px;
color: var(--muted);
letter-spacing: 0.05em;
text-align: right;
white-space: nowrap;
}
hr.section-rule {
border: 0;
border-top: 1px solid var(--rule);
margin: 56px 0;
}
hr.ornament {
border: 0;
text-align: center;
margin: 56px 0;
}
hr.ornament::before {
content: "✦ ✦ ✦";
color: var(--accent);
font-size: 14px;
letter-spacing: 1em;
}
.voices {
margin: 40px 0 32px;
padding: 28px 0 8px;
border-top: 1px solid var(--rule);
border-bottom: 1px solid var(--rule);
}
.voices > .label {
font-family: var(--sans);
font-size: 11px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
font-weight: 600;
margin-bottom: 22px;
display: block;
}
.voice {
margin: 0 0 26px;
padding-left: 20px;
border-left: 2px solid var(--accent-soft);
}
.voice:last-child { margin-bottom: 12px; }
.voice blockquote {
margin: 0 0 10px;
font-style: italic;
font-size: 17px;
line-height: 1.6;
color: #2a2620;
}
.voice .attribution {
font-family: var(--sans);
font-size: 12.5px;
color: var(--muted);
letter-spacing: 0.02em;
line-height: 1.5;
}
.voice .attribution .author {
color: var(--accent);
font-weight: 600;
}
.voice .attribution .src {
font-style: italic;
}
.closing {
text-align: center;
margin: 80px 0 40px;
padding: 60px 0 40px;
border-top: 1px solid var(--rule);
}
.closing .amen {
font-family: var(--sans);
font-size: 14px;
letter-spacing: 0.4em;
color: var(--accent);
font-weight: 600;
text-transform: uppercase;
}
@media (max-width: 900px) {
.wrap { grid-template-columns: 1fr; padding: 30px 24px; gap: 30px; }
nav.toc { position: relative; top: 0; max-height: none; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
header.title h1 { font-size: 36px; }
main { max-width: 100%; }
}
</style>
</head>
<body>
<div class="wrap">
<nav class="toc">
<h4>The Three Walls</h4>
<ol>
<li><a href="#recap">Where We Are in Matthew 5</a></li>
<li><a href="#wall-one">The Tongue · Oaths</a></li>
<li><a href="#wall-two">The Hand · Retaliation</a></li>
<li><a href="#wall-three">The Heart · Enemies</a></li>
<li><a href="#teleios">The Shape of the Heart</a></li>
</ol>
</nav>
<main>
<header class="title">
<div class="eyebrow">A Sermon on the Sermon on the Mount</div>
<h1>The Three Walls<br><span style="color:var(--muted);font-weight:400;font-size:32px;">&amp; the Shape of the Heart</span></h1>
<p class="sub">On letting our yes mean yes, refusing the vengeance we think is ours, and loving the people we drew a line against.</p>
<div class="ref">Matthew 5 : 33–48</div>
</header>
<section id="recap">
<h2><span class="num">Before we begin</span>Where we are in Matthew 5</h2>
<p>Matthew 5 moves in three movements, and two of them are already behind us.</p>
<p><strong>First came the gift &mdash; identity.</strong> Dexer Anna opened us with the Beatitudes. <em>Blessed are the poor in spirit. Blessed are those who mourn. Blessed are the meek. Blessed are those who hunger and thirst for righteousness.</em> Notice that Jesus does not begin with a demand. He begins with a blessing. And then He names us: <em>you are the salt of the earth&hellip; you are the light of the world.</em> Salt that blends in and quietly draws out the best in everything around it. Light that shines so steadily that people are pulled toward it without being shouted at. <strong>That is who we are before we are asked to do anything.</strong></p>
<p><strong>Then came the calling &mdash; vocation.</strong> Last week we walked through Jesus raising the bar, again and again. The law said <em>do not murder</em>; Jesus said <em>do not even hold contempt for your brother.</em> The law said <em>do not commit adultery</em>; Jesus said <em>do not even look with lust, because in your heart it is already done.</em> There is a higher calling, and the law is the floor; Jesus points at the ceiling.</p>
<p><strong>And today we arrive at the practice.</strong> Verses 33 to 48. If the first part gave us identity, and the second the calling, this third part asks the harder question: <em>how do we actually live as the people we have been called to be?</em></p>
<p>And here is the frame I want us to hold all the way through. In these last sixteen verses, Jesus names <strong>three walls inside us</strong>. Three walls that come up almost without our noticing, and three walls that have to come down before the heart can do the work it was made for.</p>
<table class="three-walls-table">
<tr>
<td class="roman">I</td>
<td class="name">Falsehood &amp; Duplicity<br><span class="desc">the tongue &mdash; what comes out of us</span></td>
<td class="ref-col">Oaths<br>vv. 33–37</td>
</tr>
<tr>
<td class="roman">II</td>
<td class="name">Pride &amp; Wounded Honor<br><span class="desc">the hand &mdash; what we do to another</span></td>
<td class="ref-col">Eye for an eye<br>vv. 38–42</td>
</tr>
<tr>
<td class="roman">III</td>
<td class="name">Enmity &amp; Hatred<br><span class="desc">the heart &mdash; whom we count as ours</span></td>
<td class="ref-col">Love your enemies<br>vv. 43–47</td>
</tr>
</table>
<p>Notice the pattern. Jesus moves from the outside in. From the surface of the self &mdash; how we speak &mdash; through the body of the self &mdash; how we act &mdash; to the very core of the self &mdash; whom we love. The walls come down from outside in. Hold that. It will matter when we reach verse 48.</p>
</section>
<hr class="section-rule">
<section id="wall-one">
<h2><span class="num">Wall the First &middot; The Tongue</span>I. Falsehood &amp; Duplicity</h2>
<p style="font-style:italic;color:var(--muted);margin-top:-4px;">on oaths, and why a yes should simply be a yes</p>
<h4>Before we read &mdash; one quick clarification</h4>
<p>I want to clear something up before we open the Bible. When we hear the word <em>"swearing"</em> in this passage, it is easy to think Jesus is talking about bad words. <em>"Don't swear"</em> sounds like <em>"don't cuss."</em></p>
<p>That is not what this is about.</p>
<p>In Jesus' world, <strong>swearing meant invoking something sacred to back up what you were saying.</strong> <em>I swear by the temple. I swear on my mother's grave. I swear by heaven.</em> It was the first-century version of <em>"I promise, on my life, I really mean it this time."</em></p>
<p>Jesus is not policing our language. He is healing our <strong>trustworthiness</strong>.</p>
<blockquote class="scripture">
<span class="ref">Matthew 5 : 33–37 &middot; NIV</span>
<span class="verse-num">33</span>Again, you have heard that it was said to the people long ago, <em>"Do not break your oath, but fulfill to the Lord the vows you have made."</em>
<span class="verse-num">34</span>But I tell you, do not swear an oath at all: either by heaven, for it is God's throne;
<span class="verse-num">35</span>or by the earth, for it is his footstool; or by Jerusalem, for it is the city of the Great King.
<span class="verse-num">36</span>And do not swear by your head, for you cannot make even one hair white or black.
<span class="verse-num">37</span>All you need to say is simply <em>"Yes"</em> or <em>"No"</em>; anything beyond this comes from the evil one.
</blockquote>
<h3>Begin where the Bible begins &mdash; with a God who makes promises</h3>
<p>To hear this passage rightly, we have to start somewhere most sermons on it never start. We have to start with God Himself.</p>
<p>Our God is a <strong>promise-maker</strong>. From Genesis onward, Yahweh is constantly speaking promises to His people. <em>I will be with you. I will give you this land. I will multiply your descendants. I will not destroy the earth again.</em> When God makes a promise, two things happen: He <strong>binds Himself</strong> to the recipient, and He creates a <strong>shared future</strong> with them. To break a promise would be to stop being God, and our God does not deny Himself.</p>
<p>Now hold that next to Genesis 1. <em>Let us make humanity in our image.</em> If God is a promise-maker, and we are made in God's image, then <strong>promise-making is part of what it means to be human</strong>. When we keep our word, we are doing one of the most God-like things a creature can do. The speech act &mdash; the act of binding ourselves to another by what we say &mdash; is part of the dignity of being human. It is part of what we are made for.</p>
<p>That is the air this passage is breathing. Jesus is not against promises. <strong>He is against what we have done to them.</strong></p>
<h3>The world Jesus is speaking into &mdash; and what we have done to it</h3>
<p>The Old Testament gave very clear instructions about vows. <em>You shall not swear falsely by my name</em> (Lev 19:12). <em>If you make a vow, you must fulfill it</em> (Num 30, Deut 23). And the one place we were actually told to swear &mdash; <em>"It is the Lord your God you shall fear. Him you shall serve, and by his name you shall swear"</em> (Deut 6:13). The default object of an oath was God's own name, because God's name was the strongest thing you could appeal to.</p>
<p>But the people of Jesus' day went looking for loopholes. We have always been good at this. <em>Ah &mdash; I cannot risk swearing by God's name, because if I break that one, the consequences are terrifying. So let me swear by something a little smaller. By heaven. By earth. By Jerusalem. By my own head.</em> Different words, same function: a way to lend weight to what you were saying without taking on the full weight of breaking it.</p>
<p>Some oaths were considered binding; others were considered escapable. People memorized the system. <em>"He swore by the altar &mdash; that is the loose form, I can wriggle out of that one."</em> Yes, really. Look up Mishnah Nedarim 1:3 if you want a hilarious afternoon. There was a whole vocabulary built for sounding sincere while keeping a back door open.</p>
<p>And Jesus walks into this and cuts through it with one clean stroke. <strong>No.</strong> Heaven is God's throne. Earth is His footstool. Jerusalem is the city of the Great King. Your own head &mdash; you cannot even change the color of one hair on it; it is not yours to swear by. Every loophole still circles back to God. <strong>You cannot wriggle out of His presence by rephrasing your sentence.</strong></p>
<div class="ask-the-room">
<span class="label">Ask yourselves</span>
<p>Do we have anything like this today? A way of saying things that sounds binding but is engineered to give us an exit?</p>
</div>
<p>I will give us one. <em>"I'll try."</em></p>
<p>When I say <em>"I'll try to make it,"</em> what am I actually saying? <em>"I am not coming. But I want to leave the door open in case I do."</em> That is a 21st-century kinnuyim. We have a whole vocabulary of escape hatches built into our promises &mdash; <em>I'll think about it. We'll see. Let me get back to you. Sounds good. Maybe. Possibly. I'll do my best.</em></p>
<p>And then there is the inflation. When the soft language stops working, we reach for the hard language. <em>"I promise."</em> <em>"I swear."</em> <em>"100%."</em> <em>"Trust me."</em> <em>"I'll definitely be there."</em></p>
<p>I told someone last week, <em>"I'll definitely be there by 7."</em> I was not definitely going to be there by 7. I was going to <em>try</em> to be there by 7. Maybe 7:15. Possibly 7:30 if traffic was bad. But I added the word <em>"definitely"</em> because if I had just said <em>"I'll be there at 7,"</em> they wouldn't have believed me.</p>
<p>And here's the strange part. They didn't believe me anyway. They knew. I knew they knew.</p>
<div class="ask-the-room">
<span class="label">Ask yourselves</span>
<p>When was the last time we said <em>"I swear"</em> or <em>"I promise"</em> or <em>"to be honest"</em> &mdash; and it was actually a tell that the rest of what we say isn't quite as honest?</p>
<p>When did our <em>"yes"</em> stop being enough?</p>
</div>
<h3>What Jesus is actually doing &mdash; not banning, but elevating</h3>
<p>Now I have to deal with a question this passage raises, because if we don't deal with it, the whole sermon falls apart. Jesus says, <em>"Do not take an oath at all."</em> Plain words. So &mdash; are we never to make a vow again? No wedding vows? No oaths in court? No <em>"I do"</em>?</p>
<p>Look at how the rest of the New Testament treats this.</p>
<p>Paul, after he became a follower of Jesus, took a <strong>Nazirite vow</strong> &mdash; an ancient Jewish vow involving cutting the hair as a sign of consecration. Acts 18:18 records it plainly. The man who taught us most of our New Testament theology made a formal vow. He was not in rebellion to his Master. The early church did not forget Jesus' words either &mdash; James, the brother of Jesus, repeats them word for word in his letter:</p>
<blockquote class="scripture">
<span class="ref">James 5 : 12 &middot; NIV</span>
Above all, my brothers and sisters, do not swear &mdash; not by heaven or by earth or by anything else. All you need to say is a simple <em>"Yes"</em> or <em>"No."</em> Otherwise you will be condemned.
</blockquote>
<p>So what is going on?</p>
<p>Jesus is using the same formula He has been using all sermon. <em>"You have heard that it was said&hellip; but I tell you."</em> He used it for anger. He used it for lust. He used it for divorce. <strong>And in every one of those, He is not abolishing the older teaching &mdash; He is raising it.</strong> He is not saying murder is fine; He is saying it is not enough to merely not murder &mdash; you must not even hold contempt. He is not saying adultery is fine; He is saying it is not enough to merely not commit it &mdash; you must not even nurse it in the heart.</p>
<p>The teaching on oaths is the same shape. <strong>Jesus is not banning oaths. He is saying it is not enough merely to keep your formal oaths. Every word you speak must carry the weight of an oath, whether or not you ever invoked one.</strong></p>
<p>Read verse 37 again with that in your ear. <em>"All you need to say is simply Yes or No."</em> The point is not <em>"never use the word vow again."</em> The point is <em>"your simple yes should already weigh as much as the most solemn oath ever did."</em></p>
<blockquote class="pull">In a world where everyone tells the truth, you do not need oaths. The whole apparatus of <em>"I swear by the temple"</em> exists because somewhere along the way, our word stopped being enough. So we built scaffolding to prop it up. Jesus is not abolishing the scaffolding &mdash; <strong>He is rebuilding the building.</strong></blockquote>
<p>That is not a restriction. That is a homecoming.</p>
<div class="anticipated">
<span class="q">A question we will all be asking</span>
<p class="question">"So can I take wedding vows? Can I swear in court? Take an oath of office?"</p>
<p>Yes. Solemn judicial and covenantal oaths are not what Jesus is targeting. He targets the <em>casuistic</em> system &mdash; the dodge of swearing on lesser things to get the appearance of weight without the cost of breaking it. Faithful Christians read the absoluteness of <em>"do not swear at all"</em> differently &mdash; the Quakers and Anabaptists take it absolutely; most other traditions read it as targeting the dodge. The text underdetermines this. But the spirit is the same in either reading.</p>
<p>Working rule we can all hold: <strong>if we need an oath because our plain word is not trusted, the problem is not the oath &mdash; it is why our word is not trusted.</strong></p>
</div>
<div class="breath">
<span class="label">A breath</span>
There is good news in this. <strong>It is not too late to become this kind of person.</strong> We don't have to fix the last twenty years. We don't need a personality transplant. We just need to start, today, with one yes that means yes. And then another one tomorrow. There is a strange kind of <em>rest</em> in plain speech. We don't have to engineer our sentences with twelve hedges. We don't have to perform certainty we don't have. We can just say what is true. <em>I don't know. Let me think about it. Yes. No.</em> The Pharisees made language exhausting because every word had to be measured for legal effect. Jesus is offering the opposite: words that don't have to be guarded because they don't have anything to hide.
</div>
<blockquote class="pull">"There is no shortcut for trust. We cannot swear our way into being believed. We have to <em>be</em> the kind of people who are believed."</blockquote>
<div class="voices">
<span class="label">A voice on this wall</span>
<div class="voice">
<blockquote>"What Jesus emphasized in his teaching was that honest men do not need to resort to oaths&hellip; The real implication of his teaching is that we should be people whose word can be trusted. Whatever we say, we should mean it; and whatever we promise, we should perform it. Then there will be no need for oaths."</blockquote>
<div class="attribution"><span class="author">John Stott</span> &middot; <span class="src">The Message of the Sermon on the Mount</span></div>
</div>
</div>
<div class="application">
<h4>This week &mdash; the practice</h4>
<p>Not a vow. Not an oath. Just a small experiment. For seven days, <strong>pay attention to your hedges.</strong> Notice when we say <em>"definitely,"</em> <em>"I promise,"</em> <em>"I swear,"</em> <em>"to be honest,"</em> <em>"trust me,"</em> <em>"100%,"</em> <em>"for sure."</em> Just notice. Don't fix anything yet. Just see.</p>
<p>And then ask one question: <em>would my yes hold without these crutches?</em> If it would, drop them. If it wouldn't &mdash; that is the work.</p>
</div>
<p>This is the first wall. The wall of duplicity. The wall that makes us reach for oaths because our ordinary speech has gone soft. Break it. <strong>Let our yes be yes.</strong></p>
</section>
<hr class="ornament">
<section id="wall-two">
<h2><span class="num">Wall the Second &middot; The Hand</span>II. Pride &amp; Wounded Honor</h2>
<p style="font-style:italic;color:var(--muted);margin-top:-4px;">on eye for an eye, and the creative answer to humiliation</p>
<blockquote class="scripture">
<span class="ref">Matthew 5 : 38–42 &middot; NIV</span>
<span class="verse-num">38</span>You have heard that it was said, <em>"Eye for an eye, and tooth for a tooth."</em>
<span class="verse-num">39</span>But I tell you, do not resist an evil person. If anyone slaps you on the right cheek, turn to them the other cheek also.
<span class="verse-num">40</span>And if anyone wants to sue you and take your shirt, hand over your coat as well.
<span class="verse-num">41</span>If anyone forces you to go one mile, go with them two miles.
<span class="verse-num">42</span>Give to the one who asks you, and do not turn away from the one who wants to borrow from you.
</blockquote>
<p>I will be honest &mdash; this one is harder to hear. It sounds, on first listening, like a command to be a doormat. Let me show us why it is not.</p>
<h3>The world Jesus is speaking into</h3>
<p>Remember where these people are standing. They live under <strong>Roman occupation</strong>. They are second-class citizens in their own land. The temple has been desecrated within living memory. They are waiting for a Messiah &mdash; and the Messiah they are waiting for is the one who will <em>finally</em> break the yoke of Rome. And this Messiah, standing right in front of them, says: <em>when they hit you, let them hit you again.</em> Can we feel how deeply this must have cut?</p>
<p>And then remember what <em>"eye for an eye"</em> actually was. It was not a license for vengeance &mdash; it was the opposite. It was a <strong>ceiling</strong>. If someone stole a cup of flour, you got a cup of flour back. Not his house. Not his field. Not his firstborn. The law was <em>limiting</em> retaliation, trying to stop the spiral. But by Jesus' day it had quietly flipped in the popular imagination into a <em>right</em> &mdash; a right to strike back, measure for measure, and to feel righteous about it.</p>
<p>Jesus is taking that right away. But &mdash; and this is the part most people miss &mdash; <strong>He is not replacing it with passivity. He is replacing it with something much cleverer.</strong></p>
<h3>The slap &mdash; verse 39</h3>
<p>Watch what He says. <em>"If anyone slaps you on the</em> right <em>cheek."</em> Right cheek specifically. In that culture, if I am right-handed and I want to punch you, I hit your <em>left</em> cheek. To hit your <em>right</em> cheek with my right hand, I have to use the <strong>back of my hand.</strong></p>
<p>And the backhand slap is not a fight. It is a statement of dominance. A master backhands a slave. A Roman backhands a Jew. A man backhands a woman. It says: <em>you are beneath me.</em></p>
<p>Now Jesus says: <em>turn the other cheek also.</em> Stop and picture it. Once we have turned our left cheek toward the striker, they cannot backhand it anymore &mdash; the geometry doesn't allow it. To strike again, they now have to use an <strong>open palm</strong>. And an open palm is how equals fight. In that one small, silent motion &mdash; without raising a finger, without saying a word &mdash; the one who was struck has quietly declared: <strong>we are equals.</strong> You tried to put me below you. My body has just told the truth: that we stand on the same ground.</p>
<h3>The mile &mdash; verse 41</h3>
<p>Roman law allowed a Roman soldier to compel any Jewish man to carry his gear for <strong>one mile</strong>. Not more. The limit existed because Rome knew its soldiers were few in a foreign land &mdash; if they were allowed to abuse their power freely, revolts would follow. So the one-mile rule actually protected Rome from its own soldiers. A soldier who pushed past the marker could be reported, disciplined, even court-martialed.</p>
<p>Jesus says: <em>go two miles.</em> Walk past the marker. By over-compliance, the one carrying the load has put the soldier into the very danger his own law was meant to protect him from. No striking. No cursing. Just a quiet, cheerful refusal to stop walking &mdash; and the whole system of power suddenly turns into a trap the soldier has laid for himself.</p>
<p>A small picture. I was once stopped by the Punjab police on the way back from Himachal at two in the morning. They wanted seven thousand rupees. I opened my wallet: two hundred and thirty, all I had. <em>"I'll pay the seven thousand right now,"</em> I said, <em>"just give me your UPI ID."</em> Not one of them agreed. They took the two hundred and thirty and let us go. Why? Because a <strong>digital trail is a trail</strong>. A receipt is a witness. Over-compliance exposes what quiet compliance hides. That is the same logic working in verse 41.</p>
<h3>The cloak &mdash; verse 40</h3>
<p>And the lawsuit: <em>if anyone sues you for your shirt, give him your coat as well.</em> In that culture, a man had essentially two garments. The inner shirt and the outer cloak. If he hands over both, he walks out of that courtroom <strong>naked.</strong> And in a culture of honor and shame, public nakedness shamed <em>the one looking</em> more than the one exposed. The courtroom that was meant to strip a poor man of his dignity has just become the stage on which the injustice of the whole system is displayed for everyone to see.</p>
<h3>What Jesus is actually teaching</h3>
<p>Do we see it now? Jesus is not teaching submission. He is not telling the oppressed to shut up and take it. He is teaching <strong>creative non-retaliation</strong> &mdash; an imagination that refuses both violence and surrender, and finds a third way that tells the truth.</p>
<p><em>"Eye for an eye"</em> in the popular imagination came from a wounded place: <em>my honor has been touched, so I must strike back to restore it.</em> That is pride. That is the ego defending itself. Jesus says: our honor is not ours to guard. It is the Lord's.</p>
<blockquote class="pull">"Retaliation is not the only answer to powerlessness. There is always another answer. Jesus helps us find it."</blockquote>
<div class="anticipated">
<span class="q">A question we will all be asking</span>
<p class="question">"Am I supposed to let my family be murdered? Has this verse been used to keep abuse victims trapped?"</p>
<p>No, and yes &mdash; and the second one matters enough to say directly. <em>Lex talionis</em> was a <em>judicial</em> principle. Jesus' target is the transfer of that principle into <em>personal vendetta</em>. The right-cheek backhand is an <strong>honor-insult</strong>, not a violent assault. It is a boss demeaning an employee, not a husband breaking a wife's arm. Jesus Himself avoided hostile crowds when His hour had not come (Luke 4:30, John 8:59). He never modeled staying in danger.</p>
<p>A person who leaves an abusive situation, calls the police, or seeks shelter is <strong>not</strong> violating verse 39. The verse is about renouncing personal vengeance, not personal safety. If we have ever heard this verse used to keep someone in danger, that was bad teaching, and we should say so.</p>
</div>
<div class="breath">
<span class="label">A breath</span>
Notice what is being lifted off us here. We are not being told to absorb every wrong, every insult, every injury, until we are nothing. We are being told <em>we don't have to repay them</em>. We don't have to keep score. The one who is keeping score is the Lord, and He keeps better books than we ever will. There is a freedom in setting down the calculator.
</div>
<div class="voices">
<span class="label">Voices on this wall</span>
<div class="voice">
<blockquote>"By turning the cheek, the 'inferior' is saying: 'I'm a human being, just like you. I refuse to be humiliated any longer. I am your equal. I am a child of God. I won't take it anymore.' Jesus is urging us to transcend both passivity and violence by finding a third way &mdash; one that is assertive and yet nonviolent."</blockquote>
<div class="attribution"><span class="author">Walter Wink</span> &middot; <span class="src">Engaging the Powers</span></div>
</div>
<div class="voice">
<blockquote>"No one who is seriously wronged can 'just forgive' the perpetrator. But when you forgive, that means you absorb the loss and the debt. You bear it yourself. All forgiveness, then, is costly suffering."</blockquote>
<div class="attribution"><span class="author">Tim Keller</span> &middot; <span class="src">The Reason for God</span></div>
</div>
</div>
<div class="application">
<h4>This week &mdash; the practice</h4>
<p>Notice the small impulses to repay. The colleague who took credit for our idea. The driver who cut us off. The relative whose comment still stings two years later. Notice the imagined comebacks, the satisfying replies we rehearse in the shower. Just notice. And then ask &mdash; <em>what would it cost to set this one down?</em> Not all of them, not yet. Just one.</p>
</div>
<p>This is the second wall. The wall of wounded pride. The wall that says <em>someone has to pay for what they did to me.</em> Break it. <strong>Vengeance belongs to the Lord.</strong></p>
</section>
<hr class="ornament">
<section id="wall-three">
<h2><span class="num">Wall the Third &middot; The Heart</span>III. Enmity &amp; Hatred</h2>
<p style="font-style:italic;color:var(--muted);margin-top:-4px;">on loving our enemies, and the scandal of common grace</p>
<blockquote class="scripture">
<span class="ref">Matthew 5 : 43–47 &middot; NIV</span>
<span class="verse-num">43</span>You have heard that it was said, <em>"Love your neighbor and hate your enemy."</em>
<span class="verse-num">44</span>But I tell you, love your enemies and pray for those who persecute you,
<span class="verse-num">45</span>that you may be children of your Father in heaven. He causes his sun to rise on the evil and the good, and sends rain on the righteous and the unrighteous.
<span class="verse-num">46</span>If you love those who love you, what reward will you get? Are not even the tax collectors doing that?
<span class="verse-num">47</span>And if you greet only your own people, what are you doing more than others? Do not even pagans do that?
</blockquote>
<p>Now Jesus goes to the deepest place. The tongue was outside us. The hand was still at the surface of the body. But this last wall &mdash; this one is behind the ribs. It is the wall around the heart itself.</p>
<h3>A quiet note on the quotation</h3>
<p>Look carefully at what He quotes. <em>"Love your neighbor, and hate your enemy."</em> The first half is genuinely from the Torah:</p>
<blockquote class="scripture">
<span class="ref">Leviticus 19 : 18 &middot; NIV</span>
Do not seek revenge or bear a grudge against anyone among your people, but love your neighbor as yourself. <strong>I am the Lord.</strong>
</blockquote>
<p>But the second half &mdash; <em>"and hate your enemy"</em> &mdash; <strong>is not in the Torah at all.</strong> It had been quietly added by centuries of popular religious teaching. And the list of enemies had been generously compiled: the Romans who occupied them, the Samaritans they looked down on, the tax collectors who had betrayed their own people for Caesar's silver. Plenty of enemies to hate, and a phrase in the tradition that seemed to bless the hating.</p>
<p>Jesus quotes the distorted version and then breaks it open: <em>love your enemies and pray for those who persecute you.</em></p>
<h3>The reason He gives</h3>
<p>He does not leave this command without a reason. Verse 45: <em>"that you may be children of your Father in heaven. He causes his sun to rise on the evil and the good, and sends rain on the righteous and the unrighteous."</em></p>
<p>This is <strong>common grace.</strong> The Father does not ration sunlight by morality. He does not withhold rain from the fields of people who curse Him. The grace that holds the world together falls on every head without distinction. And Jesus says: <em>you are commanded to mimic that.</em> Because a child looks like his Father.</p>
<h3>The tax collector test</h3>
<p>Then Jesus presses with two sharp questions. <em>"If you love those who love you, what reward will you get? Are not even the tax collectors doing that? And if you greet only your own people, what are you doing more than others? Do not even pagans do that?"</em></p>
<p>This is a sharp sentence. <strong>Loving the people who already love us is the easiest thing in the world.</strong> Every tax collector manages it. Every pagan manages it. Every atheist manages it. If the most defining thing about our love is that it is reciprocal, we have done nothing that distinguishes us from anyone else on earth.</p>
<p>Jesus Himself showed us what goes further. Hanging on the cross &mdash; stripped, mocked, pierced &mdash; He prays for the ones hammering the nails:</p>
<blockquote class="scripture">
<span class="ref">Luke 23 : 34 &middot; NIV</span>
Jesus said, <em>"Father, forgive them, for they do not know what they are doing."</em>
</blockquote>
<p>That is the shape of a heart with this wall down.</p>
<h3>What this is not</h3>
<p>Hear me carefully on this, because this is where the teaching gets twisted most often. Loving an enemy does <strong>not</strong> mean any of the following.</p>
<p>It is not a command to give unrelenting trust to someone who has shown themselves to be untrustworthy. It is not a call to remain in proximity to someone who is dangerous. It is not a requirement to stay in the room while someone continues to harm us. If someone is not safe &mdash; keep our distance. That is wisdom, not disobedience.</p>
<p>What Jesus is commanding is this: <strong>do not let hatred of them consume the heart.</strong> Do not actively seek their destruction. Do not nurse the quiet satisfaction of imagining their ruin. Because the moment hatred takes up residence in us, it begins to shape the house.</p>
<div class="anticipated">
<span class="q">A question we will all be asking</span>
<p class="question">"Am I supposed to <em>love</em> Hitler? My abuser? The person who killed my child?"</p>
<p>The question assumes love is a feeling. In Greek, <em class="gk-strong">agap&emacr;</em> is <strong>volitional</strong> &mdash; the will toward another's good, not warmth. We are not commanded to feel affection for atrocity. We are commanded to: not let hatred consume us; not wish their damnation; remain open, in principle, to their repentance and restoration.</p>
<p>Corrie ten Boom, meeting her sister's Ravensbr&uuml;ck guard in 1947, prayed: <em>"Jesus, help me. I can lift my hand. You supply the feeling."</em> She did the act. The feeling &mdash; slowly, partially &mdash; came. Sometimes it does not, and the command is still to keep lifting the hand.</p>
</div>
<div class="anticipated">
<span class="q">A question we will all be asking</span>
<p class="question">"If I'm honest, I want some people to suffer. What do I do with that?"</p>
<p>We start by admitting it &mdash; to God, in prayer. The imprecatory psalms (Ps 137, 139) make room for the raw voice of rage. What 5:44 asks us to add is to pray <em>for</em> them alongside our prayer <em>against</em> them &mdash; not to stop feeling the rage, but to stop letting rage be the only thing we feel toward them. Pray both prayers. Over time, watch which one starts to win.</p>
<p>Pretending to feel love we don't actually feel is just another oath we swear that our plain word can't keep.</p>
</div>
<blockquote class="pull">"Break the wall of hatred that the world is telling us to build against certain kinds of people. Each one of them can be saved by the same Jesus who saved us."</blockquote>
<div class="breath">
<span class="label">A breath</span>
Hear the relief in this. We don't have to manufacture warm feelings for everyone. We don't have to perform an emotion we don't feel. We are asked to do something simpler and harder &mdash; to <em>will</em> their good, to pray for them, to not let our hearts curdle. The feeling, where it comes, is a gift. The will is the work.
</div>
<div class="application">
<h4>This week &mdash; the practice</h4>
<p>Pick one person you would rather not pray for. Pray for them once, this week. Not for their punishment. For their <em>good</em>. It will feel awkward, and possibly hypocritical. Do it anyway. The point is not to manufacture warmth. The point is to refuse to let hatred have the only seat at the table.</p>
</div>
<p>This is the third wall. The wall around our own tribe, our own circle, our own people. The wall that draws a line and decides <em>these are mine, and those are not.</em> Break it. <strong>The Father's sun rises on both sides of that line anyway.</strong></p>
</section>
<hr class="ornament">
<section id="teleios">
<h2><span class="num">&amp; so we arrive</span>The Shape of the Heart</h2>
<p style="font-style:italic;color:var(--muted);margin-top:-4px;">on teleios, and what fills the space a wall was holding</p>
<p>Look back at where we have come. Three walls, three movements, all in a single direction.</p>
<table class="three-walls-table">
<tr>
<td class="roman">I</td>
<td class="name">Tongue<br><span class="desc">what comes out of us</span></td>
<td class="ref-col">speech</td>
</tr>
<tr>
<td class="roman">II</td>
<td class="name">Hand<br><span class="desc">what we do to another</span></td>
<td class="ref-col">action</td>
</tr>
<tr>
<td class="roman">III</td>
<td class="name">Heart<br><span class="desc">whom we count as ours</span></td>
<td class="ref-col">love</td>
</tr>
</table>
<p>Jesus has moved us from the most external to the most internal. From the surface of the self, through the body of the self, into the core of the self. <strong>The walls come down from the outside in.</strong></p>
<p>And then, having brought us all the way to the heart &mdash; having finally walked us into the innermost room &mdash; He does not leave it empty. He ends with this:</p>
<blockquote class="scripture">
<span class="ref">Matthew 5 : 48 &middot; NIV</span>
<span class="verse-num">48</span>Be perfect, therefore, as your heavenly Father is perfect.
</blockquote>
<p style="text-align:center;margin:32px 0;font-size:24px;color:var(--accent);"><span class="gk-strong">τέλειος &middot; teleios</span><br><span style="font-size:14px;color:var(--muted);font-family:var(--sans);letter-spacing:0.1em;text-transform:uppercase;">whole &middot; undivided &middot; complete</span></p>
<p>The Greek word translated <em>"perfect"</em> here is <span class="gk-strong">teleios</span>. <strong>It does not mean flawless.</strong> It means <em>whole. Undivided. Having become what it was made to be.</em> A heart that is teleios is a heart that is no longer split by walls &mdash; not cut in half by duplicity, not cornered by pride, not fenced in by hatred. A heart that is all one piece, finally its own true shape.</p>
<p>And notice what that shape resembles. Look back at verse 45. <em>"He makes his sun rise on the evil and on the good, and sends rain on the just and the unjust."</em> That is the Father's heart. <strong>That is what the heart is made to look like.</strong> When the walls come down, the space they were occupying is not empty &mdash; it is filled by the shape of the Father Himself, who was waiting there all along to take up residence.</p>
<blockquote class="pull">"A heart without walls is not an empty heart. It is a heart that has finally come home to its own true shape."</blockquote>
<h3>Identity, vocation, practice &mdash; the whole of Matthew 5 in one breath</h3>
<p>So these are not extra rules piled on top of the Christian life. They are not additional burdens for the already-burdened. They are the practices through which we receive what Jesus has already given us.</p>
<p>At the beginning of Matthew 5, He gave us the <strong>gift</strong>: <em>blessed are you</em>. He named us <strong>salt and light</strong>. Then He named our <strong>calling</strong>: a higher standard, a greater righteousness. And now, in these last verses, He hands us the <strong>practices</strong> by which the gift and the calling become an actual life.</p>
<p style="text-align:center;font-style:italic;color:var(--accent);margin:36px 0;font-size:19px;">
Break the first wall &mdash; let our yes be yes.<br>
Break the second wall &mdash; refuse the vengeance we think is our right.<br>
Break the third wall &mdash; let love cross the line we drew.
</p>
<p>And we will look, day by day, a little more like the Father whose sun rises on the evil and the good. We will become, in the strange and beautiful sense Jesus meant it, <span class="gk-strong">teleios</span>.</p>
<h3>One last question to take home</h3>
<div class="ask-the-room">
<span class="label">Ask yourselves</span>
<p>Who in your life &mdash; your kids, your spouse, your colleagues, your friends, the person you cannot stand &mdash; is waiting for your word to mean something again? For your hand to stop scoring? For your heart to lower the wall it has built?</p>
<p>What would it cost to start being that person, this week?</p>
</div>
<p>That is the homework. Not a fortress to dismantle. <strong>A trust to rebuild.</strong> A vengeance to set down. A line to cross. Starting with one yes that means yes, one wrong absorbed without a return blow, one prayer for one person we would rather not pray for.</p>
<div class="closing">
<p style="font-style:italic;color:var(--muted);font-size:18px;margin-bottom:18px;">Let's pray.</p>
<div class="amen">Amen</div>
</div>
</main>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment