Bump version in defconst elpher-version
[elpher.git] / elpher.el
index 8f194a4..143274b 100644 (file)
--- a/elpher.el
+++ b/elpher.el
 ;;; Global constants
 ;;
 
-(defconst elpher-version "2.10.2"
+(defconst elpher-version "2.11.0"
   "Current version of elpher.")
 
 (defconst elpher-margin-width 6
 ;;
 
 ;; buffer-local
-(defvar elpher--gemini-page-headings '()
-  "Interval variable containing list of headings on page.")
+(defvar elpher--gemini-page-headings nil
+  "List of headings on the page.")
 
-(defvar elpher--gemini-page-links '()
-  "Internal variable containing list of links on page.")
+(defvar elpher--gemini-page-links nil
+  "List of links on the page.")
 
 (defvar elpher--gemini-page-links-cache (make-hash-table :test 'equal)
-  "Internal variable containing hash of addresses and page links.")
+  "Hash of addresses and page links.")
 
 ;;; Customization group
 ;;
@@ -190,7 +190,7 @@ These certificates may be used for establishing authenticated TLS connections."
   :type '(file))
 
 (defcustom elpher-default-url-type "gopher"
-  "Default URL type (i.e. schema) to assume if not explicitly given."
+  "Default URL type (i.e. scheme) to assume if not explicitly given."
   :type '(choice (const "gopher")
                  (const "gemini")))