diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/nntp.el | 2 | ||||
-rw-r--r-- | lisp/language/european.el | 2 | ||||
-rw-r--r-- | lisp/net/dictionary.el | 4 | ||||
-rw-r--r-- | lisp/org/ol.el | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/gnus/nntp.el b/lisp/gnus/nntp.el index f047c832931..9902a280d50 100644 --- a/lisp/gnus/nntp.el +++ b/lisp/gnus/nntp.el @@ -234,7 +234,7 @@ server there that you can connect to. See also (const :format "" "password") (string :format "Password: %v"))))))) -(make-obsolete 'nntp-authinfo-file nil "24.1") +(make-obsolete-variable 'nntp-authinfo-file 'netrc-file "24.1") diff --git a/lisp/language/european.el b/lisp/language/european.el index 8e3aac7c2ee..937215074bc 100644 --- a/lisp/language/european.el +++ b/lisp/language/european.el @@ -390,7 +390,7 @@ Latin-9 is sometimes nicknamed `Latin-0'.")) (define-coding-system-alias 'cp284 'ibm284) (define-coding-system 'ibm285 - "UK english version of EBCDIC" + "UK English version of EBCDIC" :coding-type 'charset :charset-list '(ibm285) :mnemonic ?*) diff --git a/lisp/net/dictionary.el b/lisp/net/dictionary.el index 31cc5035a3e..d0936150194 100644 --- a/lisp/net/dictionary.el +++ b/lisp/net/dictionary.el @@ -119,7 +119,7 @@ one dictionary yields matches." "exact" "The default strategy for listing matching words within a popup window. -The following algorithm (defined by the dictd server) are supported +The following algorithms (defined by the dictd server) are supported by the choice value: - Exact match @@ -130,7 +130,7 @@ by the choice value: The found word sounds similar to the searched word. For this match type the soundex algorithm defined by Donald E. Knuth is used. It will only - works with english words and the algorithm is not very reliable (i.e., + work with English words and the algorithm is not very reliable (i.e., the soundex algorithm is quite simple). - Levenshtein distance one diff --git a/lisp/org/ol.el b/lisp/org/ol.el index a0dad926bc2..1df59e2458f 100644 --- a/lisp/org/ol.el +++ b/lisp/org/ol.el @@ -937,7 +937,7 @@ characters that should be escaped." (defun org-link-decode (s) "Decode percent-encoded parts in string S. -E.g. \"%C3%B6\" becomes the german o-Umlaut." +E.g. \"%C3%B6\" becomes the German o-Umlaut." (replace-regexp-in-string "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link--decode-compound s t t)) |