diff --git a/i3-config-wizard/i3-config-wizard.mk b/i3-config-wizard/i3-config-wizard.mk
index 1598cfed..3847786e 100644
--- a/i3-config-wizard/i3-config-wizard.mk
+++ b/i3-config-wizard/i3-config-wizard.mk
@@ -34,4 +34,4 @@ install-i3-config-wizard: i3-config-wizard/i3-config-wizard
clean-i3-config-wizard:
echo "[i3-config-wizard] Clean"
- rm -f $(i3_config_wizard_OBJECTS) $(i3_config_wizard_SOURCES_GENERATED) i3-config-wizard/i3-config-wizard i3-config-wizard/cfgparse.{output,dot}
+ rm -f $(i3_config_wizard_OBJECTS) $(i3_config_wizard_SOURCES_GENERATED) i3-config-wizard/i3-config-wizard i3-config-wizard/cfgparse.{output,dot,tab.h,y.o}
diff --git a/libi3/libi3.mk b/libi3/libi3.mk
index d99bacf4..70521073 100644
--- a/libi3/libi3.mk
+++ b/libi3/libi3.mk
@@ -18,4 +18,4 @@ libi3.a: $(libi3_OBJECTS)
clean-libi3:
echo "[libi3] Clean"
- rm -f $(libi3_OBJECTS) libi3.a
+ rm -f $(libi3_OBJECTS) libi3/libi3.a
diff --git a/man/asciidoc.conf b/man/asciidoc.conf
index 79cf2b41..32d2186f 100644
--- a/man/asciidoc.conf
+++ b/man/asciidoc.conf
@@ -7,7 +7,7 @@ template::[header-declarations]
{mantitle}
{manvolnum}
i3
-4.1.2
+4.3
i3 Manual
diff --git a/man/i3.man b/man/i3.man
index 096a359b..4358463b 100644
--- a/man/i3.man
+++ b/man/i3.man
@@ -1,7 +1,7 @@
i3(1)
=====
Michael Stapelberg
-v4.2, August 2012
+v4.3, September 2012
== NAME
@@ -32,6 +32,18 @@ Display version number (and date of the last commit).
-V::
Be verbose.
+--force-xinerama::
+Use Xinerama instead of RandR. This option should only be used if you are stuck
+with the old nVidia closed source driver (older than 302.17) which does not
+support RandR.
+
+--get-socketpath::
+Retrieve the i3 IPC socket path from X11, print it, then exit.
+
+--shmlog-size ::
+Limits the size of the i3 SHM log to bytes. Setting this to 0 disables
+SHM logging entirely. The default is 0 bytes.
+
== DESCRIPTION
=== INTRODUCTION
@@ -316,7 +328,7 @@ and the "how to hack" guide. If you are building from source, run:
You can also access these documents online at http://i3wm.org/
-i3-input(1), i3-msg(1), i3-wsbar(1), i3-nagbar(1), i3-config-wizard(1),
+i3-input(1), i3-msg(1), i3bar(1), i3-nagbar(1), i3-config-wizard(1),
i3-migrate-config-to-v4(1)
== AUTHOR
diff --git a/src/i3.mk b/src/i3.mk
index a93cc4c4..78e19890 100644
--- a/src/i3.mk
+++ b/src/i3.mk
@@ -82,4 +82,4 @@ install-i3: i3
clean-i3:
echo "[i3] Clean"
- rm -f $(i3_OBJECTS) $(i3_SOURCES_GENERATED) $(i3_HEADERS_CMDPARSER) include/loglevels.h loglevels.tmp include/all.h.pch i3-command-parser.stamp i3 src/*.gcno src/cfgparse.{output,dot} src/cmdparse.*
+ rm -f $(i3_OBJECTS) $(i3_SOURCES_GENERATED) $(i3_HEADERS_CMDPARSER) include/loglevels.h loglevels.tmp include/all.h.pch i3-command-parser.stamp i3 src/*.gcno src/cfgparse.{output,dot,tab.h,y.o} src/cmdparse.*
diff --git a/src/main.c b/src/main.c
index 7936e758..8bae9957 100644
--- a/src/main.c
+++ b/src/main.c
@@ -391,7 +391,8 @@ int main(int argc, char *argv[]) {
fprintf(stderr, "\t--force-xinerama\n"
"\tUse Xinerama instead of RandR.\n"
"\tThis option should only be used if you are stuck with the\n"
- "\tnvidia closed source driver which does not support RandR.\n");
+ "\told nVidia closed source driver (older than 302.17), which does\n"
+ "\tnot support RandR.\n");
fprintf(stderr, "\n");
fprintf(stderr, "\t--get-socketpath\n"
"\tRetrieve the i3 IPC socket path from X11, print it, then exit.\n");