diff --git a/plugins/plugin20.html b/plugins/plugin20.html
index fcdff2ed..2a42f984 100644
--- a/plugins/plugin20.html
+++ b/plugins/plugin20.html
@@ -1005,7 +1005,7 @@ A newly allocated string or NULL for failure. You must free this string with xch
-
+
Prototype: int xchat_pluginpref_set_str (xchat_plugin *ph, const char *var, const char *value);
Description: Saves a plugin-specific setting with string value to a plugin-specific config file.
@@ -1044,7 +1044,7 @@ myvar2 = This is important, too.
You should never need to edit this file manually.
-
+
Prototype: int xchat_pluginpref_get_str (xchat_plugin *ph, const char *var, char *dest);
Description: Loads a plugin-specific setting with string value from a plugin-specific config file.
@@ -1058,7 +1058,7 @@ You should never need to edit this file manually.
Returns: 1 for success, 0 for failure.
-
+
Prototype: int xchat_pluginpref_set_int (xchat_plugin *ph, const char *var, int value);
Description: Saves a plugin-specific setting with decimal value to a plugin-specific config file.
@@ -1098,7 +1098,7 @@ You should never need to edit this file manually.
You only need these kind of complex checks if you're saving user input, which can be non-numeric.
-
+
Prototype: int xchat_pluginpref_get_int (xchat_plugin *ph, const char *var);
Description: Loads a plugin-specific setting with decimal value from a plugin-specific config file.
@@ -1111,7 +1111,7 @@ You only need these kind of complex checks if you're saving user input, which ca
Returns: The decimal value of the requested setting upon success, -1 for failure.
-
+
Prototype: int xchat_pluginpref_delete (xchat_plugin *ph, const char *var);
Description: Deletes a plugin-specific setting from a plugin-specific config file.
@@ -1124,7 +1124,7 @@ You only need these kind of complex checks if you're saving user input, which ca
Returns: 1 for success, 0 for failure. If the given setting didn't exist, it also returns 1, so 1 only indicates that the setting won't exist after the call.
-
+
Prototype: int xchat_pluginpref_list (xchat_plugin *ph, char *dest);
Description: Builds a comma-separated list of the currently saved settings from a plugin-specific config file.