diff --git a/docs/libcurl/libcurl-errors.3 b/docs/libcurl/libcurl-errors.3
index 83e4256..0a3b6fd 100644
--- a/docs/libcurl/libcurl-errors.3
+++ b/docs/libcurl/libcurl-errors.3
@@ -92,15 +92,13 @@ returned an error code that was 400 or higher (for FTP) or otherwise
 indicated unsuccessful completion of the command.
 .IP "CURLE_HTTP_RETURNED_ERROR (22)"
 This is returned if CURLOPT_FAILONERROR is set TRUE and the HTTP server
-returns an error code that is >= 400. (This error code was formerly known as
-CURLE_HTTP_NOT_FOUND.)
+returns an error code that is >= 400.
 .IP "CURLE_WRITE_ERROR (23)"
 An error occurred when writing received data to a local file, or an error was
 returned to libcurl from a write callback.
 .IP "CURLE_UPLOAD_FAILED (25)"
 Failed starting the upload. For FTP, the server typically denied the STOR
 command. The error buffer usually contains the server's explanation for this.
-(This error code was formerly known as CURLE_FTP_COULDNT_STOR_FILE.)
 .IP "CURLE_READ_ERROR (26)"
 There was a problem reading a local file or an error returned by the read
 callback.
@@ -143,8 +141,7 @@ Internal error. A function was called with a bad parameter.
 .IP "CURLE_INTERFACE_FAILED (45)"
 Interface error. A specified outgoing interface could not be used. Set which
 interface to use for outgoing connections' source IP address with
-CURLOPT_INTERFACE. (This error code was formerly known as
-CURLE_HTTP_PORT_FAILED.)
+CURLOPT_INTERFACE.
 .IP "CURLE_TOO_MANY_REDIRECTS (47)"
 Too many redirects. When following redirects, libcurl hit the maximum amount.
 Set your limit with CURLOPT_MAXREDIRS.
diff --git a/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions
index dd334d4..fe097ac 100644
--- a/docs/libcurl/symbols-in-versions
+++ b/docs/libcurl/symbols-in-versions
@@ -45,7 +45,7 @@ CURLE_FTP_COULDNT_RETR_FILE     7.1
 CURLE_FTP_COULDNT_SET_ASCII     7.1           7.17.0      7.20.0
 CURLE_FTP_COULDNT_SET_BINARY    7.1           7.17.0      7.20.0
 CURLE_FTP_COULDNT_SET_TYPE      7.17.0
-CURLE_FTP_COULDNT_STOR_FILE     7.1
+CURLE_FTP_COULDNT_STOR_FILE     7.1           7.16.3      7.20.0
 CURLE_FTP_COULDNT_USE_REST      7.1
 CURLE_FTP_PORT_FAILED           7.1
 CURLE_FTP_QUOTE_ERROR           7.1           7.17.0      7.20.0
@@ -59,8 +59,8 @@ CURLE_FTP_WEIRD_USER_REPLY      7.1           7.17.0      7.20.0
 CURLE_FTP_WRITE_ERROR           7.1           7.17.0      7.20.0
 CURLE_FUNCTION_NOT_FOUND        7.1
 CURLE_GOT_NOTHING               7.9.1
-CURLE_HTTP_NOT_FOUND            7.1
-CURLE_HTTP_PORT_FAILED          -             7.12.0
+CURLE_HTTP_NOT_FOUND            7.1           7.10.3      7.20.0
+CURLE_HTTP_PORT_FAILED          -             7.12.0      7.20.0
 CURLE_HTTP_POST_ERROR           7.1
 CURLE_HTTP_RANGE_ERROR          7.1           7.17.0      7.20.0
 CURLE_INTERFACE_FAILED          7.12.0
@@ -71,7 +71,7 @@ CURLE_LIBRARY_NOT_FOUND         7.1           7.17.0      7.20.0
 CURLE_MALFORMAT_USER            7.1           7.17.0      7.20.0
 CURLE_OK                        7.1
 CURLE_OPERATION_TIMEDOUT        7.17.0
-CURLE_OPERATION_TIMEOUTED       7.1           7.17.0
+CURLE_OPERATION_TIMEOUTED       7.1           7.17.0      7.20.0
 CURLE_OUT_OF_MEMORY             7.1
 CURLE_PARTIAL_FILE              7.1
 CURLE_PEER_FAILED_VERIFICATION  7.17.1
diff --git a/include/curl/curl.h b/include/curl/curl.h
index cc5e9ca..8bd6ca9 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -427,12 +427,6 @@ typedef enum {
 
 /* The following were added earlier */
 
-#define CURLE_OPERATION_TIMEOUTED CURLE_OPERATION_TIMEDOUT
-
-#define CURLE_HTTP_NOT_FOUND CURLE_HTTP_RETURNED_ERROR
-#define CURLE_HTTP_PORT_FAILED CURLE_INTERFACE_FAILED
-#define CURLE_FTP_COULDNT_STOR_FILE CURLE_UPLOAD_FAILED
-
 #define CURLE_FTP_PARTIAL_FILE CURLE_PARTIAL_FILE
 #define CURLE_FTP_BAD_DOWNLOAD_RESUME CURLE_BAD_DOWNLOAD_RESUME
 
