diff --git a/7.0.017 b/7.0.017
new file mode 100644
index 0000000..7580449
--- /dev/null
+++ b/7.0.017
@@ -0,0 +1,64 @@
+To: vim-dev@vim.org
+Subject: Patch 7.0.017
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.017 (after 7.0.014)
+Problem:    Linking gui_xmebw.c fails on Dec Alpha Tru64. (Rolfe)
+Solution:   Adjust defines for Motif 1.2 and older.
+Files:	    src/gui_xmebw.c
+
+
+*** ../vim-7.0.016/src/gui_xmebw.c	Fri May 12 19:24:33 2006
+--- src/gui_xmebw.c	Sat May 13 12:55:01 2006
+***************
+*** 47,59 ****
+  #include "gui_xmebwp.h"
+  
+  /* Provide some missing wrappers, which are missed from the LessTif
+!  * implementation.
+   *
+   * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
+   * pixmap will not appear in it's caches properly. We cache the interresting
+   * values in XmEnhancedButtonPart instead ourself.
+   */
+! #ifdef LESSTIF_VERSION
+  # ifndef Lab_IsMenupane
+  #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
+  		    Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
+--- 47,59 ----
+  #include "gui_xmebwp.h"
+  
+  /* Provide some missing wrappers, which are missed from the LessTif
+!  * implementation.  Also missing in Motif 1.2 and earlier.
+   *
+   * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
+   * pixmap will not appear in it's caches properly. We cache the interresting
+   * values in XmEnhancedButtonPart instead ourself.
+   */
+! #if defined(LESSTIF_VERSION) || (XmVersion <= 1002)
+  # ifndef Lab_IsMenupane
+  #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
+  		    Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
+*** ../vim-7.0.016/src/version.c	Sat May 13 09:16:38 2006
+--- src/version.c	Sat May 13 13:00:03 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     17,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+141. You'd rather go to http://www.weather.com/ than look out your window.
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/README.patches b/README.patches
index fb10836..ce20a0f 100644
--- a/README.patches
+++ b/README.patches
@@ -41,3 +41,4 @@ Individual patches for Vim 7.0:
   5712  7.0.014  Motif: doesn't compile with Motif 1.2 and earlier
   4485  7.0.015  Athena: type casts for lvalues
   1810  7.0.016  recognize encodings "mac-roman", "dec-mcs" and "hp-roman8"
+  2302  7.0.017  (after 7.0.014) Motif: doesn't link with Motif 1.2 and earlier