about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R.Garbe <arg@10ksloc.org>2006-08-14 16:59:18 +0200
committerAnselm R.Garbe <arg@10ksloc.org>2006-08-14 16:59:18 +0200
commit19da197f58bc005ad379d751f28f0a17cea3d3b8 (patch)
tree0b204bd49a35c7148107ef091ab26b1aeef1abde /dwm.h
parent666fae97e67810089ffbddd019d655bc4f9f7838 (diff)
downloaddwm-19da197f58bc005ad379d751f28f0a17cea3d3b8.tar.gz
changed replacetag into toggletag
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dwm.h b/dwm.h
index c13179f..10eaf30 100644
--- a/dwm.h
+++ b/dwm.h
@@ -116,19 +116,19 @@ extern void sendevent(Window w, Atom a, long value);
 extern int xerror(Display *dsply, XErrorEvent *ee);
 
 /* tag.c */
-extern void appendtag(Arg *arg);
 extern void dofloat(Arg *arg);
 extern void dotile(Arg *arg);
 extern void initrregs();
 extern Bool isvisible(Client *c);
 extern Client *getnext(Client *c);
 extern Client *getprev(Client *c);
-extern void replacetag(Arg *arg);
 extern void restack();
 extern void settags(Client *c);
+extern void tag(Arg *arg);
 extern void togglemode(Arg *arg);
-extern void view(Arg *arg);
+extern void toggletag(Arg *arg);
 extern void toggleview(Arg *arg);
+extern void view(Arg *arg);
 
 /* util.c */
 extern void *emallocz(unsigned int size);