diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2024-07-08 17:41:23 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-07-08 17:41:33 +0200 |
commit | f410b251fd8a30360f2b9969957dae3ab6ee5bd8 (patch) | |
tree | 4d9f784970b914ccc8b1dd2c35c5e6ee61da09e1 /lisp/emacs-lisp | |
parent | dd8d5d57df51bcd066323d068b852e9373871584 (diff) | |
download | emacs-f410b251fd8a30360f2b9969957dae3ab6ee5bd8.tar.gz emacs-f410b251fd8a30360f2b9969957dae3ab6ee5bd8.tar.bz2 emacs-f410b251fd8a30360f2b9969957dae3ab6ee5bd8.zip |
Make checkdoc recognize "U.S." acronym
* lisp/emacs-lisp/checkdoc.el (checkdoc-in-abbreviation-p): Recognize
"U.S." acronym.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 252dd5cbf83..d81eba7e85c 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -2137,7 +2137,7 @@ Examples of recognized abbreviations: \"e.g.\", \"i.e.\", \"cf.\"." (seq (any "cC") "f") ; cf. (seq (any "eE") ".g") ; e.g. (seq (any "iI") "." (any "eE")) ; i.e. - "a.k.a" "etc" "vs" "N.B" + "a.k.a" "etc" "vs" "N.B" "U.S" ;; Some non-standard or less common ones that we ;; might as well accept. "Inc" "Univ" "misc" "resp") |