$OpenBSD: patch-addons_kate_pate_src_plugins_cmake_utils_command_completers_param_types_py,v 1.1 2013/12/08 19:13:30 zhuk Exp $
Python 2.x does not allow defparameters after "*args".
--- addons/kate/pate/src/plugins/cmake_utils/command_completers/param_types.py.orig	Thu Nov 28 18:47:12 2013
+++ addons/kate/pate/src/plugins/cmake_utils/command_completers/param_types.py	Sun Dec  1 22:15:45 2013
@@ -211,7 +211,7 @@ class MultiSignature(object):
 class OneOf(object):
     '''Class to choose one of possible syntax'''
 
-    def __init__(self, *syntaxes, exppos=None):
+    def __init__(self, exppos=None, *syntaxes):
         self.syntaxes = syntaxes
         assert(exppos is None or isinstance(exppos, int))
         self.exppos = exppos
