aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2009-06-26 12:21:58 +0000
committerokan2009-06-26 12:21:58 +0000
commitf041981121a18d2b5c0697db9469c8c6ab474386 (patch)
tree91a1c58c010d4d75d54b153aef83d0f1090d82f9 /conf.c
parentf211e0e6f9fb03e24ed65461fc1375f3eda6d6ba (diff)
downloadcwm-f041981121a18d2b5c0697db9469c8c6ab474386.tar.gz
static local functions and data; almost identical diff from Thomas Pfaff
ok oga@
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/conf.c b/conf.c
index fdf9e60..91df027 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: conf.c,v 1.65 2009/06/20 00:22:39 okan Exp $
+ * $Id: conf.c,v 1.66 2009/06/26 12:21:58 okan Exp $
*/
#include "headers.h"
@@ -28,6 +28,9 @@
((tsp)->tv_sec cmp (usp)->tv_sec))
#endif
+static void conf_mouseunbind(struct conf *, struct mousebinding *);
+static void conf_unbind(struct conf *, struct keybinding *);
+
extern struct screen_ctx *Curscreen;
/* Add an command menu entry to the end of the menu */
@@ -278,7 +281,7 @@ conf_client(struct client_ctx *cc)
cc->flags |= ignore ? CLIENT_IGNORE : 0;
}
-struct {
+static struct {
char *tag;
void (*handler)(struct client_ctx *, union arg *);
int flags;
@@ -493,7 +496,7 @@ conf_bindname(struct conf *c, char *name, char *binding)
return;
}
-void
+static void
conf_unbind(struct conf *c, struct keybinding *unbind)
{
struct keybinding *key = NULL, *keynxt;
@@ -515,7 +518,7 @@ conf_unbind(struct conf *c, struct keybinding *unbind)
}
}
-struct {
+static struct {
char *tag;
void (*handler)(struct client_ctx *, void *);
int context;
@@ -583,7 +586,7 @@ conf_mousebind(struct conf *c, char *name, char *binding)
}
}
-void
+static void
conf_mouseunbind(struct conf *c, struct mousebinding *unbind)
{
struct mousebinding *mb = NULL, *mbnxt;