diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-23 23:01:25 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-24 12:28:10 +0200 |
commit | 2932592469ae2bc9081f01fa9726b5bae2cc9fa7 (patch) | |
tree | f22ce1732f9f434ccd92d078727fdd4014c10efd | |
parent | 01e17fd4e9d671fa92411f8fd3a00766df0e0787 (diff) | |
download | emacs-2932592469ae2bc9081f01fa9726b5bae2cc9fa7.tar.gz emacs-2932592469ae2bc9081f01fa9726b5bae2cc9fa7.tar.bz2 emacs-2932592469ae2bc9081f01fa9726b5bae2cc9fa7.zip |
; * lisp/emacs-lisp/checkdoc.el (checkdoc-in-abbreviation-p): Doc fix.
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index cae65eba8ea..06720cfa2eb 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -2093,7 +2093,7 @@ The text checked is between START and LIMIT." (defun checkdoc-in-abbreviation-p (begin) "Return non-nil if point is at an abbreviation. -Examples of abbreviations handled: \"e.g.\", \"i.e.\", \"cf.\"." +Examples of recognized abbreviations: \"e.g.\", \"i.e.\", \"cf.\"." (save-excursion (goto-char begin) (condition-case nil @@ -2120,7 +2120,7 @@ Examples of abbreviations handled: \"e.g.\", \"i.e.\", \"cf.\"." "etc" ; etc. "vs" ; vs. ;; Some non-standard or less common ones that we - ;; might as well ignore. + ;; might as well accept. "Inc" "Univ" "misc" "resp") ".")))) (error t)))) |