]> Cypherpunks repositories - gostls13.git/commitdiff
misc/{bbedit|IntelliJIDEA|kate}: add missing delete predeclared identifier
authorChaiShushan <chaishushan@gmail.com>
Mon, 24 Jun 2013 20:17:56 +0000 (13:17 -0700)
committerRob Pike <r@golang.org>
Mon, 24 Jun 2013 20:17:56 +0000 (13:17 -0700)
In general the description should describe what is added or fixed,
not how it was done (the code does this), but in this case the cause
was delete was missing, so the fix is to add it.

Fixes  issue 5765.

R=golang-dev, iant, r
CC=golang-dev
https://golang.org/cl/10496043

misc/IntelliJIDEA/Go.xml
misc/bbedit/Go.plist
misc/kate/go.xml

index 09265a2e0fd75d36272b53c4e42c74d1c0cbf733..51abdf412736e85a239077770eb2cbcde0d36588 100644 (file)
@@ -75,6 +75,7 @@ Copy this custom language definition & configuration file to
             <keyword name="close"/>
             <keyword name="complex"/>
             <keyword name="copy"/>
+            <keyword name="delete"/>
             <keyword name="imag"/>
             <keyword name="len"/>
             <keyword name="make"/>
index 791f93d16cd22dc7d751ae9bc1d7dcbb9c2e6d7b..1220d6efb464095983c1ca391c1e605ee2584f8a 100644 (file)
@@ -11,7 +11,7 @@
                break,
                byte,
                cap,
-               case,         
+               case,
                chan,
                close,
                complex,
@@ -20,8 +20,9 @@
                const,
                continue,
                copy,
-               default,      
+               default,
                defer,
+               delete,
                else,
                error,
                fallthrough,
index c187eda82b7a602a2a4b16badb204848d05eef81..03f4f2a0c8265ffa2ef237e0f4b02932b2b92c42 100644 (file)
@@ -70,6 +70,7 @@
       <item> close </item>
       <item> complex </item>
       <item> copy </item>
+      <item> delete </item>
       <item> imag </item>
       <item> len </item>
       <item> make </item>