diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-20 15:20:12 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-05-20 15:20:12 -0300 |
commit | 1dcf791fefa6533a06f58a5d2d074f59f06ee9ae (patch) | |
tree | c249c38dced0a3524894f51920800daef349c7bf /lisp/emacs-lisp/checkdoc.el | |
parent | 96479927c91b925379501ce0999303d79593defa (diff) | |
download | emacs-1dcf791fefa6533a06f58a5d2d074f59f06ee9ae.tar.gz emacs-1dcf791fefa6533a06f58a5d2d074f59f06ee9ae.tar.bz2 emacs-1dcf791fefa6533a06f58a5d2d074f59f06ee9ae.zip |
* lisp/emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
Also allow singlespace after single-letter capitals followed by a dot.
Diffstat (limited to 'lisp/emacs-lisp/checkdoc.el')
-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 9880e2918b0..aead75668f1 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el @@ -2046,7 +2046,7 @@ If the offending word is in a piece of quoted text, then it is skipped." ;; piece of an abbreviation ;; FIXME etc (looking-at - "\\([a-z]\\|[iI]\\.?e\\|[eE]\\.?g\\)\\.")) + "\\([a-zA-Z]\\|[iI]\\.?e\\|[eE]\\.?g\\)\\.")) (error t)))) (if (checkdoc-autofix-ask-replace b e |