summaryrefslogtreecommitdiff
path: root/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2008-09-15 22:18:39 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2008-09-15 22:18:39 +0200
commit1e2b2f3c504115c832a5d254f9d2653757bb0f3f (patch)
treed5a3e9bd7aae75413173657ad6823733309b38ec /dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
parentbdb7aaf3f2f39515b4740afc23cb3b7a18ee6aa3 (diff)
downloadoverlay-1e2b2f3c504115c832a5d254f9d2653757bb0f3f.tar.gz
overlay-1e2b2f3c504115c832a5d254f9d2653757bb0f3f.tar.bz2
overlay-1e2b2f3c504115c832a5d254f9d2653757bb0f3f.zip
Add fixed ctags
Diffstat (limited to 'dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch')
-rw-r--r--dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch b/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
new file mode 100644
index 0000000..a20007a
--- /dev/null
+++ b/dev-util/ctags/files/ctags-5.7-python-vars-starting-with-def.patch
@@ -0,0 +1,11 @@
+--- python.c 2008-03-26 20:31:26.000000000 +0200
++++ python.c 2008-03-26 20:31:35.000000000 +0200
+@@ -185,7 +185,7 @@
+ while (*cp)
+ {
+ cp = skipEverything (cp);
+- if (!strncmp(cp, "def", 3) || !strncmp(cp, "class", 5))
++ if (!strncmp(cp, "def ", 4) || !strncmp(cp, "class ", 6))
+ {
+ return cp;
+ }