diff --git a/Makefile.inc.in b/Makefile.inc.in
index 18cd9b7ad9a0ed11d7e20add990d9517471740e8..749f9062c3a23f4bab35509dc5ae219251b0ab83 100644
--- a/Makefile.inc.in
+++ b/Makefile.inc.in
@@ -62,7 +62,6 @@ P_LOCALE      = @localedir@
 P_DESKTOP     = @P_DESKTOP@
 P_ICON        = @P_ICON@
 P_DATA        = $(P_DATAROOT)/aegisub/
-P_DOC         = @docdir@
 
 ###############
 # LIBRARY FLAGS
diff --git a/libaegisub/Makefile b/libaegisub/Makefile
index 29882968befdc108c0bab4e190ebe1e5a721aa61..7f570ec5925a4d84c85f67cf9f1b02a20b21c934 100644
--- a/libaegisub/Makefile
+++ b/libaegisub/Makefile
@@ -10,7 +10,7 @@ lagi_pre.h.gch: CXXFLAGS := $(CXXFLAGS)
 
 common/charset_conv.o: CXXFLAGS += $(CFLAGS_ICONV)
 common/parser.o: CXXFLAGS += -ftemplate-depth=256
-unix/path.o: CXXFLAGS += -DP_DATA=\"$(P_DATA)\" -DP_DOC=\"$(P_DOC)\" -DP_LOCALE=\"$(P_LOCALE)\"
+unix/path.o: CXXFLAGS += -DP_DATA=\"$(P_DATA)\"
 
 SRC += \
 	common/parser.cpp \
diff --git a/libaegisub/common/path.cpp b/libaegisub/common/path.cpp
index 7fa7e899d3be7f5e14939798455283f808f0f489..c7407a8238617926d0e41f0e940fb3ed4532edcc 100644
--- a/libaegisub/common/path.cpp
+++ b/libaegisub/common/path.cpp
@@ -43,7 +43,6 @@ Path::Path() {
 	tokens["?data"];
 	tokens["?temp"];
 	tokens["?dictionary"];
-	tokens["?docs"];
 
 	FillPlatformSpecificPaths();
 
diff --git a/libaegisub/unix/path.cpp b/libaegisub/unix/path.cpp
index 7612331770ee325f7b08e6ebd0f8611b9863f4fa..8e7f76be2900ce9ea4b47b07146c1e4d2b1addaa 100644
--- a/libaegisub/unix/path.cpp
+++ b/libaegisub/unix/path.cpp
@@ -53,7 +53,6 @@ void Path::FillPlatformSpecificPaths() {
 #endif
 	SetToken("?temp", boost::filesystem::temp_directory_path());
 	SetToken("?dictionary", "/usr/share/hunspell");
-	SetToken("?docs", P_DOC);
 }
 
 }
diff --git a/libaegisub/windows/path_win.cpp b/libaegisub/windows/path_win.cpp
index 9784a945496a970b8b2d0be9b547864c949e1904..77eb27ae6dc05450af7067a26b84bf80f6fb4817 100644
--- a/libaegisub/windows/path_win.cpp
+++ b/libaegisub/windows/path_win.cpp
@@ -51,7 +51,6 @@ void Path::FillPlatformSpecificPaths() {
 	SetToken("?data", filename);
 
 	SetToken("?dictionary", Decode("?data/dictionaries"));
-	//SetToken("?docs", Decode("?data/docs"));
 }
 
 }