aboutsummaryrefslogtreecommitdiffstats
path: root/main/nasm/space-after-backslash.patch
diff options
context:
space:
mode:
authortmpfile <tmpfile@users.noreply.github.com>2017-06-20 08:48:35 -0300
committerTimo Teräs <timo.teras@iki.fi>2017-06-20 13:40:51 +0000
commitba05d56727b98b779b51e2600758bfe4d5282189 (patch)
treef53e7d8899755f752e9cc156290145fd8c8e2b8d /main/nasm/space-after-backslash.patch
parent2d8f6ec4d9048e42c9aa44b764653ec619f510fd (diff)
downloadaports-ba05d56727b98b779b51e2600758bfe4d5282189.tar.bz2
aports-ba05d56727b98b779b51e2600758bfe4d5282189.tar.xz
main/nasm: upgrade to 2.13.01
Diffstat (limited to 'main/nasm/space-after-backslash.patch')
-rw-r--r--main/nasm/space-after-backslash.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/main/nasm/space-after-backslash.patch b/main/nasm/space-after-backslash.patch
deleted file mode 100644
index c6e0df5dd7..0000000000
--- a/main/nasm/space-after-backslash.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 490f85e73d8bca15ada1c0bacc101c136e5d9cee Mon Sep 17 00:00:00 2001
-From: Cyrill Gorcunov <gorcunov@gmail.com>
-Date: Thu, 27 Dec 2012 20:02:17 +0400
-Subject: [PATCH] br3392236: Don't treat \Space after \BackSlash as a sign for line continuation
-
-In commit f1fe4fdeabeaf2e5e4d02ef43beeb09a6fbfed1b I occasionally
-made a \Space after \BackSlash being a sign of line continuation.
-
-Fix it.
-
-Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
----
- preproc.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/preproc.c b/preproc.c
-index 8c5bf7a..9d65917 100644
---- a/preproc.c
-+++ b/preproc.c
-@@ -844,7 +844,7 @@ static char *read_line(void)
- case '\\':
- next = fgetc(istk->fp);
- ungetc(next, istk->fp);
-- if (next == ' ' || next == '\r' || next == '\n') {
-+ if (next == '\r' || next == '\n') {
- cont = true;
- nr_cont++;
- continue;
---
-1.6.5.GIT
-